<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://stationeers-wiki.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Wark</id>
	<title>Stationeers Community Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://stationeers-wiki.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Wark"/>
	<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/Special:Contributions/Wark"/>
	<updated>2026-04-03T20:52:37Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.6</generator>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=IC10&amp;diff=22351</id>
		<title>IC10</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=IC10&amp;diff=22351"/>
		<updated>2024-12-28T22:05:37Z</updated>

		<summary type="html">&lt;p&gt;Wark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:IC10 Programming]]&lt;br /&gt;
=Scripting language for IC10 housings / chips=&lt;br /&gt;
MIPS is [[Stationeers]]&#039; inspiration for the in-game scripting language called IC10. It runs on [[Integrated Circuit (IC10)|IC10 chips]] crafted at the [[Electronics Printer]]. &lt;br /&gt;
&lt;br /&gt;
==Registers==&lt;br /&gt;
Internal registers &#039;&#039;&#039;r?&#039;&#039;&#039;: The IC contains 16 CPU registers, numbered &#039;&#039;&#039;r0&#039;&#039;&#039; to &#039;&#039;&#039;r15&#039;&#039;&#039;. From now on referred to as &#039;&#039;&#039;r?&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Device registers &#039;&#039;&#039;d? logicType&#039;&#039;&#039;: Device registers are written to and from the IC. A device register is numbered &#039;&#039;&#039;d0&#039;&#039;&#039; to &#039;&#039;&#039;d5&#039;&#039;&#039; (select via screw), or &#039;&#039;&#039;db&#039;&#039;&#039; (connected device). From now on referred to as &#039;&#039;&#039;d?&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
=== Logic and algorithmic with &#039;&#039;&#039;Internal registers&#039;&#039;&#039; ===&lt;br /&gt;
All calculations are exclusively performed to and from &#039;&#039;&#039;r?&#039;&#039;&#039; registers, or generally more understood as variables in programming. You can use aliases to give convenient names with the &amp;lt;code&amp;gt;alias string r?|d?&amp;lt;/code&amp;gt;command (see below). &lt;br /&gt;
&lt;br /&gt;
Internal registers can be manipulated in various ways. &lt;br /&gt;
* Write constant values &amp;lt;code&amp;gt;move r? (r?|num)&amp;lt;/code&amp;gt;: Example: &amp;lt;code&amp;gt;move r0 2&amp;lt;/code&amp;gt; sets r0 to the number 2.&lt;br /&gt;
* Calculate: Calculations are done to- and from these registers, like &amp;lt;code&amp;gt;add r? a(r?|num) b(r?|num)&amp;lt;/code&amp;gt;. Example: &amp;lt;code&amp;gt;add r1 r0 3&amp;lt;/code&amp;gt; adds 3 to r0, and writes to r1.&lt;br /&gt;
&lt;br /&gt;
Note, for any kind of if statements or loop behaviours, knowing about labels, branching, and jumps is essential knowledge. See below.&lt;br /&gt;
&lt;br /&gt;
=== IO to &#039;&#039;&#039;Device registers&#039;&#039;&#039; ===&lt;br /&gt;
Acronym &#039;&#039;&#039;d?&#039;&#039;&#039; stands for device, where ? is a number corresponding to the screw device selector on the socket.&lt;br /&gt;
You can also read/write to the device where the IC is planted in using device &#039;&#039;&#039;db&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Generally, there are up to 6 devices which can be set using the screwdriver &#039;&#039;&#039;d0&#039;&#039;&#039; to &#039;&#039;&#039;d5&#039;&#039;&#039;. A special device register &#039;&#039;&#039;db&#039;&#039;&#039; is the device wherever the IC is mounted upon. Very convenient for atmospheric devices where no separate IC socket is required.&lt;br /&gt;
&lt;br /&gt;
Note, the IC is completely unaware where d? is actually connected to. So if you get a logicType error, check d? number, or check if the screw has been set on the socket. An alias is only convenient to convey what is expected to be set on the d? screw, it does not actually set or program the screq.&lt;br /&gt;
&lt;br /&gt;
* Read from device (load) &amp;lt;code&amp;gt;l r? d? logicType&amp;lt;/code&amp;gt;: Reads logicType, like Pressure from a [[Sensors|gas sensor]], from device d? to register r?. Values can be read from connected devices and put into the register using the &#039;&#039;&#039;l&#039;&#039;&#039; (load) command. For example, if you want to load the state of a door. &amp;lt;br&amp;gt; Example: &amp;lt;code&amp;gt;l r0 Door Open&amp;lt;/code&amp;gt; reads the &#039;Open&#039; field of an object named &#039;Door&#039;, that would be connected to the IC housing of the chip.&lt;br /&gt;
* Write to a device (set) &amp;lt;code&amp;gt;s d? logicType r?&amp;lt;/code&amp;gt;: Write a value from a register back to a device using the command &amp;lt;code&amp;gt;s d? logicType r?&amp;lt;/code&amp;gt;. For example, if d0 is set to a door using the screwdriver, &amp;lt;code&amp;gt;s d0 Open 0&amp;lt;/code&amp;gt; sets the &#039;Open&#039; status of the d0 (a door) to 0, effectively closing the door.&lt;br /&gt;
&lt;br /&gt;
=== batch IO to - &#039;&#039;&#039;Device registers&#039;&#039;&#039; ===&lt;br /&gt;
&#039;&#039;&#039;Batch writing&#039;&#039;&#039; needs to be done to a specific &#039;&#039;&#039;deviceHash&#039;&#039;&#039; instead of d?. Is unique per device type, which you can find in the [[Stationpedia]] entries.&lt;br /&gt;
* &amp;lt;code&amp;gt;lb r? deviceHash logicType batchMode&amp;lt;/code&amp;gt; &lt;br /&gt;
* &amp;lt;code&amp;gt;sb deviceHash logicType r?&amp;lt;/code&amp;gt;&lt;br /&gt;
Additionally, using the following batch commands, a &#039;&#039;&#039;nameHash&#039;&#039;&#039; can be provided to only modify devices with a certain name.&lt;br /&gt;
* &amp;lt;code&amp;gt;lbn r? deviceHash nameHash logicType batchMode &amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;sbn deviceHash nameHash logicType r?&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;batchMode&#039;&#039;&#039; is a parameter equal to 0, 1, 2, or 3. These are also defined as the constants &#039;&#039;&#039;Average&#039;&#039;&#039;, &#039;&#039;&#039;Sum&#039;&#039;&#039;, &#039;&#039;&#039;Minimum&#039;&#039;&#039;, and &#039;&#039;&#039;Maximum&#039;&#039;&#039; respectively. The word or number can be used.&lt;br /&gt;
&lt;br /&gt;
Combining one of these functions with the &amp;lt;code&amp;gt;HASH()&amp;lt;/code&amp;gt; function can be advantageous:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;lbn r0 HASH(&amp;quot;StructureGasSensor&amp;quot;) HASH(&amp;quot;Sensor 1&amp;quot;) Temperature Average&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This code will load the average temperature of all gas sensors on the network named &amp;quot;Sensor 1&amp;quot; onto register &#039;&#039;&#039;r0&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If the batch read (lb/lbn) is done on a network without any matching devices the results will be as specified in the table:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ Batch read with no devices&lt;br /&gt;
|-&lt;br /&gt;
! Batch Mode !! Result&lt;br /&gt;
|-&lt;br /&gt;
| Average (0) || nan&lt;br /&gt;
|-&lt;br /&gt;
| Sum (1) || 0&lt;br /&gt;
|-&lt;br /&gt;
| Minimum (2) || inf&lt;br /&gt;
|-&lt;br /&gt;
| Maximum (3) || ninf&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Examples ===&lt;br /&gt;
&lt;br /&gt;
Here are some examples demonstrating all three operations:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 10&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Sets register &#039;&#039;&#039;r0&#039;&#039;&#039; to the value 10&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 r1&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Copies the value of register &#039;&#039;&#039;r1&#039;&#039;&#039; to register &#039;&#039;&#039;r0&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r0 d0 Temperature&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Reads the Temperature parameter from device &#039;&#039;&#039;d0&#039;&#039;&#039; and places the value in register &#039;&#039;&#039;r0&#039;&#039;&#039;.&lt;br /&gt;
Note: not all devices have a Temperature parameter, check the in-game stationpedia.&lt;br /&gt;
&lt;br /&gt;
To set a device specific value (like &#039;&#039;&#039;On&#039;&#039;&#039;), you can write into this value.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s d0 On r0&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Writes the value from register &#039;&#039;&#039;r0&#039;&#039;&#039; out to &#039;&#039;&#039;On&#039;&#039;&#039; parameter of device &#039;&#039;&#039;d0&#039;&#039;&#039;. In this example the device will be turned On, if valve of register r0 equals 1, otherwise (register r0 equals 0) it will turned off. See section [[IC10#Device_Variables|Device Variables]].&lt;br /&gt;
&lt;br /&gt;
It&#039;s recommended to use labels (like: &#039;&#039;someVariable&#039;&#039;) instead of a direct reference to the register. See &#039;&#039;&#039;alias&#039;&#039;&#039; in section [[IC10#Instructions|Instructions]].&lt;br /&gt;
&lt;br /&gt;
=== Special registers ===&lt;br /&gt;
There are two more registers. One called &#039;&#039;&#039;ra&#039;&#039;&#039; (return address) and one called &#039;&#039;&#039;sp&#039;&#039;&#039; (stack pointer). The &#039;&#039;&#039;ra&#039;&#039;&#039; is used by certain jump and branching instructions (those ending with &#039;&#039;&#039;-al&#039;&#039;&#039;) to remember which line in the script it should return to. The &#039;&#039;&#039;sp&#039;&#039;&#039; tracks the next index within the stack (a memory that can store up to 512 values) to be pushed (written) to or popped (read) from. Neither &#039;&#039;&#039;ra&#039;&#039;&#039; or &#039;&#039;&#039;sp&#039;&#039;&#039; is protected, their values can be changed by instructions like any other register.&lt;br /&gt;
&lt;br /&gt;
==Stack Memory==&lt;br /&gt;
The Stack is a memory that can hold 512 different values. Each IC10 has its own Stack, and some devices (like the Logical Sorter) also have a Stack.&lt;br /&gt;
;push r?: adds the value  &#039;&#039;&#039;r?&#039;&#039;&#039; and increments the &#039;&#039;&#039;sp&#039;&#039;&#039; by 1.&lt;br /&gt;
;pop r?: loads the value in the stack memory at index &amp;lt;code&amp;gt;sp-1&amp;lt;/code&amp;gt; into register &#039;&#039;&#039;r?&#039;&#039;&#039; and decrements the &#039;&#039;&#039;sp&#039;&#039;&#039; by 1.&lt;br /&gt;
;peek r?: loads the value in the stack memory at index &amp;lt;code&amp;gt;sp-1&amp;lt;/code&amp;gt; into register &#039;&#039;&#039;r?&#039;&#039;&#039;.&lt;br /&gt;
;get r? d? address(r?|num): loads the value in the stack memory at index &amp;lt;code&amp;gt;address&amp;lt;/code&amp;gt; on provided device into register &#039;&#039;&#039;r?&#039;&#039;&#039;.&lt;br /&gt;
;getd r? id(r?|num) address(r?|num): loads the value in the stack memory at index &amp;lt;code&amp;gt;address&amp;lt;/code&amp;gt; on provided device id into register &#039;&#039;&#039;r?&#039;&#039;&#039;.&lt;br /&gt;
;put d? address(r?|num) value(r?|num): adds the value to the stack memory off the provided device at index &amp;lt;code&amp;gt;address&amp;lt;/code&amp;gt;.&lt;br /&gt;
;putd id(r?|num) address(r?|num) value(r?|num) : adds the value to the stack memory off the provided device id at index &amp;lt;code&amp;gt;address&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
As mentioned previously, &#039;&#039;&#039;sp&#039;&#039;&#039; can be both written to and read from any time. When reading (&#039;&#039;&#039;peek&#039;&#039;&#039; or &#039;&#039;&#039;pop&#039;&#039;&#039;), &#039;&#039;&#039;sp&#039;&#039;&#039; must be between 1 and 512, inclusive. While writing (&#039;&#039;&#039;push&#039;&#039;&#039;), &#039;&#039;&#039;sp&#039;&#039;&#039; must be between 0 and 511, inclusive.&lt;br /&gt;
&lt;br /&gt;
Stack memory is persistent on logic chips. This means that if you have a logic chip and push values to the stack, the code that pushes those values can be removed and the stack will retain those values.&lt;br /&gt;
&lt;br /&gt;
Note that this does not carry over to any other logic chips which receive the program of the original; They will need to have their stack memories programmed individually.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Stack Traversing&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Traversing the stack can be done similarly to how an array would be traversed in some other languages:&lt;br /&gt;
{{ICCode|&lt;br /&gt;
#this will traverse indices {min value} through {max value}-1&lt;br /&gt;
move sp {min value}&lt;br /&gt;
loop:&lt;br /&gt;
add sp sp 1&lt;br /&gt;
peek r0&lt;br /&gt;
&lt;br /&gt;
#do something here with your stack values (loaded into r0)&lt;br /&gt;
&lt;br /&gt;
blt sp {max value} loop&lt;br /&gt;
&lt;br /&gt;
#continue on&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Alternatively, you can use the pop function&#039;s decrementing to make a more efficient loop:&lt;br /&gt;
{{ICCode|&lt;br /&gt;
move sp {max value}&lt;br /&gt;
add sp sp 1&lt;br /&gt;
loop:&lt;br /&gt;
pop r0&lt;br /&gt;
&lt;br /&gt;
#do something here with your stack values (loaded into r0)&lt;br /&gt;
&lt;br /&gt;
bgt sp {min value} loop&lt;br /&gt;
&lt;br /&gt;
#continue on&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Comments==&lt;br /&gt;
Comments can be placed using a &#039;&#039;&#039;#&#039;&#039;&#039; symbol. All comments are ignored by the game when it reads commands. Below is an example of valid code with two comments.&lt;br /&gt;
{{ICCode|&lt;br /&gt;
alias MyAlias r0 # Text after the hash tag will be ignored to the end of the line.&lt;br /&gt;
# You can also write comments on their own lines, like this.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Device Ports==&lt;br /&gt;
ICs can interact with up to 6 other devices via d0 - d5, as well as the device it&#039;s attached to via db. To change or set a device, use a screwdriver and adjust the device in the IC housing. You can read or set any of the device&#039;s properties, so it is possible to do things like read the pressure or oxygen content of a room on the same Device port. &lt;br /&gt;
&lt;br /&gt;
Additionally, is possible to set other IC housings as devices, allowing you to create programs that run across multiple ICs together. For example, an Gas Mixing IC could check the &#039;&#039;&#039; Setting&#039;&#039;&#039;  field of a Atmosphere Sensor IC and act based on the value of the sensor chip.&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;l&#039;&#039;&#039; (load) or &#039;&#039;&#039;s&#039;&#039;&#039; (set) instructions you have to read or set these values to your device. Examples:&lt;br /&gt;
{{ICCode|&lt;br /&gt;
#Reads the &#039;Temperature&#039; from an atmosphere sensor&lt;br /&gt;
# at device port &#039;d0&#039; into register &#039;r0&#039;.&lt;br /&gt;
l r0 d0 Temperature&lt;br /&gt;
}} &lt;br /&gt;
{{ICCode|&lt;br /&gt;
# Writes the value of the register &#039;r0&#039; to the&lt;br /&gt;
# device on port &#039;d1&#039; into the variable &#039;Setting&#039;.&lt;br /&gt;
s d1 Setting r0&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Labels==&lt;br /&gt;
Labels are used to make it easier to jump between lines in the script. The label will have a numerical value that is the same as its line number. Even though it&#039;s possible to use a labels value for calculations, doing so is a bad idea since any changes to the code can change the line numbers of the labels.&lt;br /&gt;
{{ICCode|&lt;br /&gt;
main: # define a jump mark with label &#039;main&#039;&lt;br /&gt;
j main # jumps back to &#039;main&#039;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Constants==&lt;br /&gt;
Instead of using a register to store a fixed value, a constant can be made. Using this name will refer to the assigned value. With the help of Constants you can save register places.&lt;br /&gt;
{{ICCode|&lt;br /&gt;
# defines a Constant with name &#039;pi&#039;&lt;br /&gt;
# and set its value to 3.14159&lt;br /&gt;
define pi 3.14159&lt;br /&gt;
}} &lt;br /&gt;
&lt;br /&gt;
You can use these constants like any other variables (see: alias in section [[IC10#Instructions|Instructions]]). Example:&lt;br /&gt;
{{ICCode|&lt;br /&gt;
# set the value of register &#039;r0&#039; to the value of constant named &#039;pi&#039;.&lt;br /&gt;
move r0 pi &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Numeric values==&lt;br /&gt;
Registers and constants are usually decimal values using double-precision floating point (confirmed?).&lt;br /&gt;
&lt;br /&gt;
Unlike real CPU architectures, integers are not supported as a distinct type, but double FP can represent integers up to about 54 bits before rounding causes problems (the exact number depending what bit patterns you happen to have).&lt;br /&gt;
&lt;br /&gt;
Numbers can be written in hexadecimal by preceding the value with a $ symbol. Values larger than 54 bits might get corrupted. Hex numbers are typically used for ReferenceId values.&lt;br /&gt;
&lt;br /&gt;
Examples: &lt;br /&gt;
{{ICCode|&lt;br /&gt;
move r0 12345&lt;br /&gt;
move r1 123.456&lt;br /&gt;
move r2 $E1B2&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Indirect referencing==&lt;br /&gt;
This is a way of accessing a register by using another register as a pointer. Adding an additional r in front of the register turns on this behaviour. The value stored in the register being used as the pointer must be between 0 to 15, this will then point to a register from r0 to r15, higher or lower values will cause an error.&lt;br /&gt;
{{ICCode|&lt;br /&gt;
move r0 5 # stores the value 5 in r0&lt;br /&gt;
move rr0 10 &lt;br /&gt;
# is now the same as &#039;move r5 10&#039; &lt;br /&gt;
# since r0 has the value 5, rr0 points at the register r5&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Additional r&#039;s can be added to do indirect referencing multiple times in a row.&lt;br /&gt;
{{ICCode|&lt;br /&gt;
move r1 2&lt;br /&gt;
move r2 3&lt;br /&gt;
move rrr1 4&lt;br /&gt;
# is now the same as &#039;move r3 4&#039;&lt;br /&gt;
# since r1 points at r2 which points at r3&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
This also works with devices&lt;br /&gt;
{{ICCode|&lt;br /&gt;
move r0 2 # stores the value 2 in r0&lt;br /&gt;
s dr0 On 1 &lt;br /&gt;
# is now the same as &#039;s d2 On 1&#039;&lt;br /&gt;
# r0 has the value 2 so dr0 points at d2&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Dynamically changing LogicType when interacting with Device Registers ==&lt;br /&gt;
When the &amp;lt;code&amp;gt;l&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;s&amp;lt;/code&amp;gt; instructions are used to read from or write to a Device Register, the LogicType is the variable that will be interacted with (example: in &amp;lt;code&amp;gt;l r0 myDevice Temperature&amp;lt;/code&amp;gt; the LogicType is the Temperature). In most scripts the LogicType will be hardcoded. But it&#039;s also possible to change the LogicType dynamically. The LogicType is an enum, where each type is identified by a unique integer value. This makes it possible to cycle through them in various ways, either as a list placed on the Stack, or by increasing the LogicType value via addition in each loop.&lt;br /&gt;
{{ICCode|&lt;br /&gt;
#loop through a list of LogicTypes&lt;br /&gt;
push LogicType.RatioOxygen&lt;br /&gt;
push LogicType.RatioVolatiles&lt;br /&gt;
push LogicType.Temperature&lt;br /&gt;
loop:&lt;br /&gt;
pop r1&lt;br /&gt;
l r0 myDevice r1&lt;br /&gt;
...&lt;br /&gt;
bgtz sp loop #loop until the Stack is empty}}&lt;br /&gt;
&lt;br /&gt;
==Network Referencing / Channels==&lt;br /&gt;
&lt;br /&gt;
All cable networks have 8 Channels which can have data loaded from/stored to via a device and connection reference. Connections for each supported device are listed in the stationpedia. All &#039;connections&#039; a device can make are a connection (pipe, chute, cable), but only cable networks have channels.&lt;br /&gt;
&lt;br /&gt;
The 8 channels (Channel0 to Channel7) are however volatile, in that data is destroyed if any part of the cable network is changed, removed, or added to, and also whenever the world is exited. All these channels default to NaN. Strictly speaking, they default to what we would call &amp;quot;quiet NaN&amp;quot;, in that its not an error it simply means its not a number yet. Recommend you use these channels for reading and writing between networks, rather than as a data store. This effectively means an IC can read all the networks for all devices to connected to it, so not just their own local network, but any networks any device they can reference is connected to.&lt;br /&gt;
{{ICCode|&lt;br /&gt;
# d0 is device zero, and the :0 refers&lt;br /&gt;
# to that device&#039;s 0 connection&lt;br /&gt;
l r0 d0:0 Channel0}}&lt;br /&gt;
&lt;br /&gt;
For example: on an IC Housing, the 0 connection is the data port and 1 is power, so you could write out r0 to Channel0 of the power network of the Housing using &amp;lt;code&amp;gt;s db:1 Channel0 r0&amp;lt;/code&amp;gt;&lt;br /&gt;
{{ICCode|&lt;br /&gt;
#read all 8 channels with a loop and&lt;br /&gt;
#place the values in r0 to r7&lt;br /&gt;
move r15 LogicType.Channel0 #LogicType integer&lt;br /&gt;
move r14 0 #pointer for indirect referencing&lt;br /&gt;
loop:&lt;br /&gt;
l rr14 db:0 r15&lt;br /&gt;
add r15 r15 1 #next channel&lt;br /&gt;
add r14 r14 1 #next register&lt;br /&gt;
ble r15 LogicType.Channel7 loop&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Logic gates, Bitwise and Logical==&lt;br /&gt;
&lt;br /&gt;
All logic gates in MIPS have a bitwise behavior. The available gates are NOT, AND, OR, XOR and NOR (XNOR and NAND are missing).&lt;br /&gt;
&lt;br /&gt;
In Bitwise operations, each bit is matched separately, which includes the sign bit.&lt;br /&gt;
&lt;br /&gt;
To understand what is going on with bitwise operations, a little bit of computer theory is needed. In Stationeers each register uses 64 bits for integer values (a number without decimals), where the 64th bit is the sign-bit (0 for positive and 1 for negative). Since the number 0 is counted as a positive value, this gives each register a range of (2^63 - 1) to -2^63. Negative numbers also behave according to Two&#039;s complement (https://en.wikipedia.org/wiki/Two%27s_complement). Which means that a number with a sign-bit of 1 will have all of its number bits flipped as well, so that the decimal value of -1 is represented by a binary value of sixtyfour 1&#039;s (this is the smallest possible negative integer since zero counts as a positive integer).&lt;br /&gt;
&lt;br /&gt;
MIPS have binary notation (https://en.wikipedia.org/wiki/Binary_number) that is activated by placing a % in front of the number. The _ characters are ignored and only used for readability.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;not r0 0&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;# 0 = %00000000_00000000_00000000_00000000_00000000_00000000_00000000_00000000&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;# flip all bits&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;# -1 = %11111111_11111111_11111111_11111111_11111111_11111111_11111111_11111111&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;# r0 equals -1&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;and r0 3 6&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;# 3 = %011&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;# 6 = %110&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;# only the bits in the &amp;quot;2&amp;quot; position are matching&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;# r0 equals %010 = 2&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Logical operations can still be performed via alternative instructions. But these are not perfect substitutes, they treat negative values differently, and some can produce non-binary outputs. When using these, keep in mind that devices that wants a binary value will treat any non-binary values like this: &amp;gt;= 1 counts as &amp;quot;1&amp;quot; and &amp;lt;1 counts as &amp;quot;0&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;# r0 = result&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;# r1 = input A&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;# r2 = input B&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;Logical NOT = seqz r0 r1&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;Logical AND = min r0 r1 r2&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;Logical OR = max r0 r1 r2&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;Logical XOR = sne r0 r1 r2 (only for binary inputs)&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;Logical NAND = not and&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;Logical NOR = not or&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;Logical XNOR = not xor&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Debugging advices==&lt;br /&gt;
The value stored in a register or variable can easily be displayed by writing it to the Setting parameter of the IC housing. This has no side effects. To see the value, just stand close to the IC housing and look directly at the housing.&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;s db Setting r0&amp;lt;/code&amp;gt;. # sets/writes the value of register &#039;&#039;&#039;r0&#039;&#039;&#039; into the parameter &#039;&#039;&#039;Setting&#039;&#039;&#039; of the IC Housing(&#039;&#039;&#039;db&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
To check if a certain block of code is executed, use the above trick but with a random number that you choose, like the line number.&amp;lt;br&amp;gt; This example will display the number 137 on the IC housing.&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;s db Setting 137&amp;lt;/code&amp;gt;  # sets/writes the number 137 into the parameter &#039;&#039;&#039;Setting&#039;&#039;&#039; of the IC Housing(&#039;&#039;&#039;db&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
Always use unique names for labels. When a label is named after a IC10 keyword like &amp;quot;Temperature:&amp;quot; or &amp;quot;Setting:&amp;quot; the original meaning of the keyword is overwritten, so when an instruction tries to use it an error will occur.&lt;br /&gt;
&lt;br /&gt;
A [[Cartridge#Configuration|configuration cartridge]] installed in a [[Handheld_Tablet|tablet]]  can be used to see all available values and configuration parameter for all devices you focus on.&lt;br /&gt;
&lt;br /&gt;
==Learning IC10==&lt;br /&gt;
IC10 can be difficult to get started with. So here is a list of instructions that are useful for beginners. These can be used to write many different scripts.&lt;br /&gt;
&lt;br /&gt;
General:&lt;br /&gt;
* &amp;lt;code&amp;gt;alias&amp;lt;/code&amp;gt; make the script easier to read by assigning a name to a register or device, example: &amp;lt;code&amp;gt;alias rTemperature r15&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;label:&amp;lt;/code&amp;gt; where &amp;quot;label&amp;quot; can be replaced with almost any word, jump and branch instructions can use these in place of line numbers, example: &amp;lt;code&amp;gt;start:&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;yield&amp;lt;/code&amp;gt; pause for 1-tick and then resume, if not used the script will automatically pause for 1-tick after 128 lines&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Jumps:&lt;br /&gt;
*&amp;lt;code&amp;gt;j someLabelName&amp;lt;/code&amp;gt; jump to line with &#039;&#039;&#039;someLabelName&#039;&#039;&#039;&lt;br /&gt;
*&amp;lt;code&amp;gt;jal someLabelName&amp;lt;/code&amp;gt; stores the next line number into the register ra (return address) and then jump to &#039;&#039;&#039;someLabelName&#039;&#039;&#039;&lt;br /&gt;
*&amp;lt;code&amp;gt;j ra&amp;lt;/code&amp;gt; jump to register ra (return address)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Branching (jump-if):&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;beq a(r?|num) b(r?|num) c(r?|num)&amp;lt;/code&amp;gt; if &#039;&#039;&#039;a&#039;&#039;&#039; is equal to &#039;&#039;&#039;b&#039;&#039;&#039; goto &#039;&#039;&#039;c&#039;&#039;&#039;  (label or linenumber) &amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;bne a(r?|num) b(r?|num) c(r?|num)&amp;lt;/code&amp;gt; if  &#039;&#039;&#039;a&#039;&#039;&#039; not-equal &#039;&#039;&#039;b&#039;&#039;&#039; goto  &#039;&#039;&#039;c&#039;&#039;&#039; (label or linenumber) &amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;bgt a(r?|num) b(r?|num) c(r?|num)&amp;lt;/code&amp;gt; if  &#039;&#039;&#039;a&#039;&#039;&#039; greater than &#039;&#039;&#039;b&#039;&#039;&#039; goto   &#039;&#039;&#039;c&#039;&#039;&#039; (label or linenumber) &amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;blt a(r?|num) b(r?|num) c(r?|num)&amp;lt;/code&amp;gt; if  &#039;&#039;&#039;a&#039;&#039;&#039; less than &#039;&#039;&#039;b&#039;&#039;&#039; goto &#039;&#039;&#039;c&#039;&#039;&#039; (label or linenumber) &amp;lt;br&amp;gt;&lt;br /&gt;
The suffix -al can be added to each of these (example: beqal) to save the &#039;&#039;&#039;next&#039;&#039;&#039; line number into the &amp;quot;return address&amp;quot; register. this is called using &amp;lt;code&amp;gt;j ra&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Device interactions:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
l (load)&lt;br /&gt;
lb (load batch, requires one of the following: 0(Average) / 1(Sum) / 2(Minimum) / 3(Maximum))&lt;br /&gt;
ls (load slot)&lt;br /&gt;
s (store)&lt;br /&gt;
sb (store batch)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Logic and Math:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
seqz (common NOT-gate: turns 0 into 1, and all other values into 0)&lt;br /&gt;
move&lt;br /&gt;
add (addition)&lt;br /&gt;
sub (subtraction)&lt;br /&gt;
mul (multiplication)&lt;br /&gt;
div (division)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Common device variables:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
On (1 is on, 0 is off)&lt;br /&gt;
Open (1 is open, 0 is closed)&lt;br /&gt;
Setting (meaning varies between devices, example: a LED display(console) will show this value)&lt;br /&gt;
Activate (1 usually means running, example: a Daylight sensor is 1 when the sun shines on it)&lt;br /&gt;
Temperature (in Kelvin, Celsius - 273.15)&lt;br /&gt;
Pressure (in kPa)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Notes:&lt;br /&gt;
&amp;lt;br&amp;gt;-All instructions and variables can be seen in-game in the IC editor window by clicking the &amp;quot;f&amp;quot;, &amp;quot;x&amp;quot; and &amp;quot;s(x)&amp;quot; buttons on the top right.&lt;br /&gt;
&amp;lt;br&amp;gt;-The stationpedia is the best source to see which variables are available to each device.&lt;br /&gt;
&amp;lt;br&amp;gt;-Most scripts are loops, they end with a jump instruction that leads back up to the start. Otherwise they will just run once and then stop.&lt;br /&gt;
&lt;br /&gt;
Two practice scripts:&lt;br /&gt;
&amp;lt;br&amp;gt;Automatic Night Light: Load &amp;quot;Activate&amp;quot; from a Daylight sensor, flip the value with a NOT-gate, store the value to the &amp;quot;On&amp;quot; variable of one or more lights.&lt;br /&gt;
&amp;lt;br&amp;gt;Automatic Wall Cooler: Read &amp;quot;Temperature&amp;quot; from a Gas Sensor. Branch if the value is greater than X, turn on the cooler. Branch if the value is less than Y, turn off the cooler. (Wall coolers need a minimum of 12.5 kPa pressure in the connected pipe)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Accessing devices via batch or ReferenceId ==&lt;br /&gt;
&lt;br /&gt;
The IC housing has 6 pins you can use to configure the devices it&lt;br /&gt;
uses.  This provides flexibility to let the installer configure which&lt;br /&gt;
devices will be controlled by the IC.&lt;br /&gt;
&lt;br /&gt;
Alternatives for accessing devices include the batch load/store and&lt;br /&gt;
the ReferenceId load/store instructions.&lt;br /&gt;
&lt;br /&gt;
{{ICCode|&lt;br /&gt;
# get the average charge ratio across station batteries&lt;br /&gt;
lb r0 HASH(&amp;quot;StructureBattery&amp;quot;) Ratio Average&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{ICCode|&lt;br /&gt;
# get the ReferenceId for the sorter named &amp;quot;Sorter Corn&amp;quot;&lt;br /&gt;
lbn r1 HASH(&amp;quot;StructureLogicSorter&amp;quot;) HASH(&amp;quot;Sorter Corn&amp;quot;) ReferenceId Maximum&lt;br /&gt;
ble r1 ninf ra&lt;br /&gt;
#use the ReferenceId to set that sorter&#039;s mode.&lt;br /&gt;
sd r1 Mode 1&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Using the 6 configuration pins makes it easy to write reusable MIPS&lt;br /&gt;
scripts where the installer uses the pins to select the devices that&lt;br /&gt;
will be managed.&lt;br /&gt;
&lt;br /&gt;
Using batch-name instructions frees you from the hassle of adjusting&lt;br /&gt;
the pins, but requires you to name the devices via the [[Labeller]].  It&lt;br /&gt;
can also allow you to control more than 6 devices.&lt;br /&gt;
&lt;br /&gt;
=== Batch instructions ===&lt;br /&gt;
&lt;br /&gt;
The batch instructions can address multiple devices only via their &#039;&#039;&#039;PrefabHash&#039;&#039;&#039; generated from the prefab name using the `HASH(&amp;quot;Name&amp;quot;)` macro or copied directly from the [[Stationpedia]]. A prefab hash is always an integer. All devices that can be read with logic contain the logic value &#039;&#039;&#039;PrefabHash&#039;&#039;&#039; and &#039;&#039;&#039;NameHash&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
See [[#Slot.2FLogic_.2F_Batched|Batched instructions]] for a comprehensive list of all batch instructions.&lt;br /&gt;
&lt;br /&gt;
[[#sb|sb]], [[#sbn|sbn]], [[#sbs|sbs]], (no sbns)&amp;lt;br&amp;gt;&lt;br /&gt;
[[#lb|lb]], [[#lbs|lbs]], [[#lbn|lbn]], [[#lbns|lbns]]&lt;br /&gt;
&lt;br /&gt;
=== Direct reference instructions ===&lt;br /&gt;
&lt;br /&gt;
Direct reference instructions can address a specific device via its &#039;&#039;&#039;ReferenceId&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
[[#clrd|clrd]], [[#getd|getd]], [[#putd|putd]],&amp;lt;br&amp;gt;&lt;br /&gt;
[[#ld|ld]], [[#sd|sd]], (no slot access via reference ID)&lt;br /&gt;
&lt;br /&gt;
=Instructions=&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
See [[IC10/instructions]]&lt;br /&gt;
&lt;br /&gt;
{{:IC10/instructions}}&lt;br /&gt;
&lt;br /&gt;
[https://www.cs.tufts.edu/comp/140/lectures/Day_3/mips_summary.pdf Other examples]&lt;br /&gt;
&lt;br /&gt;
== Conditional functions cheatsheet ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! suffix !! description !! branch to line !! branch and store return address !! relative jump to line !! set register&lt;br /&gt;
|-&lt;br /&gt;
| prefix: ||  || b- || b-al || br- || s-&lt;br /&gt;
|-&lt;br /&gt;
|  || unconditional || j    || jal    || jr    || &lt;br /&gt;
|-&lt;br /&gt;
| -eq  || if a == b || beq  || beqal  || breq  || seq&lt;br /&gt;
|-&lt;br /&gt;
| -eqz || if a == 0 || beqz || beqzal || breqz || seqz&lt;br /&gt;
|-&lt;br /&gt;
| -ge  || if a &amp;gt;= b || bge  || bgeal  || brge  || sge&lt;br /&gt;
|-&lt;br /&gt;
| -gez || if a &amp;gt;= 0 || bgez || bgezal || brgez || sgez&lt;br /&gt;
|-&lt;br /&gt;
| -gt  || if a &amp;gt; b  || bgt  || bgtal  || brgt  || sgt&lt;br /&gt;
|-&lt;br /&gt;
| -gtz || if a &amp;gt; 0  || bgtz || bgtzal || brgtz || sgtz&lt;br /&gt;
|-&lt;br /&gt;
| -le  || if a &amp;lt;= b || ble  || bleal  || brle  || sle&lt;br /&gt;
|-&lt;br /&gt;
| -lez || if a &amp;lt;= 0 || blez || blezal || brlez || slez&lt;br /&gt;
|-&lt;br /&gt;
| -lt  || if a &amp;lt; b  || blt  || bltal  || brlt  || slt&lt;br /&gt;
|-&lt;br /&gt;
| -ltz || if a &amp;lt; 0  || bltz || bltzal || brltz || sltz&lt;br /&gt;
|-&lt;br /&gt;
| -ne  || if a != b || bne  || bneal  || brne  || sne&lt;br /&gt;
|-&lt;br /&gt;
| -nez || if a != 0 || bnez || bnezal || brnez || snez&lt;br /&gt;
|-&lt;br /&gt;
| -nan || if a == NaN || bnan ||  || brnan || snan&lt;br /&gt;
|-&lt;br /&gt;
| -nanz || if a != NaN ||  ||  || || snanz&lt;br /&gt;
|-&lt;br /&gt;
| -dns || if device d is not set          || bdns || bdnsal || brdns || sdns&lt;br /&gt;
|-&lt;br /&gt;
| -dse || if device d is set              || bdse || bdseal || brdse || sdse&lt;br /&gt;
|-&lt;br /&gt;
| -ap  || if a approximately equals b     || bap  || bapal  || brap  || sap&lt;br /&gt;
|-&lt;br /&gt;
| -apz || if a approximately equals 0     || bapz || bapzal || brapz || sapz&lt;br /&gt;
|-&lt;br /&gt;
| -na  || if a not approximately equals b || bna  || bnaal  || brna  || sna&lt;br /&gt;
|-&lt;br /&gt;
| -naz || if a not approximately equals 0 || bnaz || bnazal || brnaz || snaz&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
All &amp;lt;code&amp;gt;b-&amp;lt;/code&amp;gt; commands require target line as last argument, all &amp;lt;code&amp;gt;s-&amp;lt;/code&amp;gt; commands require register to store result as first argument. All &amp;lt;code&amp;gt;br-&amp;lt;/code&amp;gt; commands require number to jump relatively as last argument. e.g. &amp;lt;code&amp;gt;breq a b 3&amp;lt;/code&amp;gt; means if a=b then jump to 3 lines after.&lt;br /&gt;
&lt;br /&gt;
All approximate functions require additional argument denoting how close two numbers need to be considered equal. E.g.: &amp;lt;code&amp;gt;sap r0 100 101 0.01&amp;lt;/code&amp;gt; will consider 100 and 101 almost equal (not more than 1%=0.01 different) and will set r0 to 1. The exact formula is &amp;lt;code&amp;gt;if abs(a - b) &amp;lt;= max(c * max(abs(a), abs(b)), float.epsilon * 8)&amp;lt;/code&amp;gt; for &amp;lt;code&amp;gt;-ap&amp;lt;/code&amp;gt; and is similar for other approximate functions.&lt;br /&gt;
&lt;br /&gt;
https://en.wikipedia.org/wiki/Machine_epsilon&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
  FLT_EPSILON = 2^(−23) ≈ 1.19e−07;        &amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;float (32 bit)&amp;lt;/span&amp;gt;&lt;br /&gt;
  DBL_EPSILON = 2^(−52) ≈ 2.20e−16;        &amp;lt;span style=&amp;quot;color:#4c9700;&amp;quot;&amp;gt;double (64 bit)&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
  &amp;lt;code&amp;gt;if abs(100 - 101) &amp;lt;= max(0.01 * max(abs(100), abs(101)), float.epsilon * 8)&amp;lt;/code&amp;gt;&lt;br /&gt;
  &amp;lt;code&amp;gt;if abs(-1) &amp;lt;= max(0.01 * 101, float.epsilon * 8)&amp;lt;/code&amp;gt;&lt;br /&gt;
  &amp;lt;code&amp;gt;if 1 &amp;lt;= max(0.01 * 101, float.epsilon * 8)&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
  &amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;if 1 &amp;lt;= max(1.01, FLT_EPSILON * 8)&amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;span style=&amp;quot;color:#4c9700;&amp;quot;&amp;gt;if 1 &amp;lt;= max(1.01, DBL_EPSILON * 8)&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
  &amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;if 1 &amp;lt;= max(1.01, 1.19e−07 * 8)&amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;span style=&amp;quot;color:#4c9700;&amp;quot;&amp;gt;if 1 &amp;lt;= max(1.01, 2.20e−16 * 8)&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
  &amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;if 1 &amp;lt;= max(1.01, 0.000000952)&amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;span style=&amp;quot;color:#4c9700;&amp;quot;&amp;gt;if 1 &amp;lt;= max(1.01, 0.00000000000000176)&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
  &amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;if 1 &amp;lt;= 1.01   TRUE   1&amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;span style=&amp;quot;color:#4c9700;&amp;quot;&amp;gt;if 1 &amp;lt;= 1.01   TRUE   1&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Device Variables==&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Activate&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Activate&lt;br /&gt;
:1 if device is activated (usually means running), otherwise 0&lt;br /&gt;
:&amp;lt;code&amp;gt;l r0 d0 Activate # sets r0 to 1 if on or 0 if off&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;AirRelease&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;AirRelease&lt;br /&gt;
&amp;lt;div id=&amp;quot;Charge&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Charge&lt;br /&gt;
:    The current charge the device has.&lt;br /&gt;
&amp;lt;div id=&amp;quot;CLearMemory&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ClearMemory&lt;br /&gt;
:    When set to 1, clears the counter memory (e.g. ExportCount).  Will set itself back to 0 when triggered.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Color&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Color&lt;br /&gt;
:    &amp;lt;div style=&amp;quot;display: inline-block; vertical-align: top; height: 20px; width: 20px; border: 1px solid black; margin-right: 5px; background-color:#212AA5;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;amp;nbsp;0 (or lower) = Blue&lt;br /&gt;
:    &amp;lt;div style=&amp;quot;display: inline-block; vertical-align: top; height: 20px; width: 20px; border: 1px solid black; margin-right: 5px; background-color:#7B7B7B;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;amp;nbsp;1 = Grey &lt;br /&gt;
:    &amp;lt;div style=&amp;quot;display: inline-block; vertical-align: top; height: 20px; width: 20px; border: 1px solid black; margin-right: 5px; background-color:#3F9B39;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;amp;nbsp;2 = Green &lt;br /&gt;
:    &amp;lt;div style=&amp;quot;display: inline-block; vertical-align: top; height: 20px; width: 20px; border: 1px solid black; margin-right: 5px; background-color:#FF662B;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;amp;nbsp;3 = Orange &lt;br /&gt;
:    &amp;lt;div style=&amp;quot;display: inline-block; vertical-align: top; height: 20px; width: 20px; border: 1px solid black; margin-right: 5px; background-color:#E70200;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;amp;nbsp;4 = Red &lt;br /&gt;
:    &amp;lt;div style=&amp;quot;display: inline-block; vertical-align: top; height: 20px; width: 20px; border: 1px solid black; margin-right: 5px; background-color:#FFBC1B;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;amp;nbsp;5 = Yellow &lt;br /&gt;
:    &amp;lt;div style=&amp;quot;display: inline-block; vertical-align: top; height: 20px; width: 20px; border: 1px solid black; margin-right: 5px; background-color:#E7E7E7;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;amp;nbsp;6 = White &lt;br /&gt;
:    &amp;lt;div style=&amp;quot;display: inline-block; vertical-align: top; height: 20px; width: 20px; border: 1px solid black; margin-right: 5px; background-color:#080908;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;amp;nbsp;7 = Black &lt;br /&gt;
:    &amp;lt;div style=&amp;quot;display: inline-block; vertical-align: top; height: 20px; width: 20px; border: 1px solid black; margin-right: 5px; background-color:#633C2B;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;amp;nbsp;8 = Brown &lt;br /&gt;
:    &amp;lt;div style=&amp;quot;display: inline-block; vertical-align: top; height: 20px; width: 20px; border: 1px solid black; margin-right: 5px; background-color:#63633F;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;amp;nbsp;9 = Khaki &lt;br /&gt;
:    &amp;lt;div style=&amp;quot;display: inline-block; vertical-align: top; height: 20px; width: 20px; border: 1px solid black; margin-right: 5px; background-color:#E41C99;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;amp;nbsp;10 = Pink &lt;br /&gt;
:    &amp;lt;div style=&amp;quot;display: inline-block; vertical-align: top; height: 20px; width: 20px; border: 1px solid black; margin-right: 5px; background-color:#732CA7;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;amp;nbsp;11 (or higher) = Purple &lt;br /&gt;
&amp;lt;div id=&amp;quot;CompletionRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;CompletionRatio&lt;br /&gt;
&amp;lt;div id=&amp;quot;ElevatorLevel&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ElevatorLevel&lt;br /&gt;
&amp;lt;div id=&amp;quot;ElevatorSpeed&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ElevatorSpeed&lt;br /&gt;
&amp;lt;div id=&amp;quot;Error&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Error&lt;br /&gt;
:	1 if device is in error state, otherwise 0&lt;br /&gt;
&amp;lt;div id=&amp;quot;ExportCount&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ExportCount&lt;br /&gt;
:    How many items exporfted since last ClearMemory.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Filtration&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Filtration&lt;br /&gt;
:	The current state of the filtration system.  For example filtration = 1 for a Hardsuit when filtration is On.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Harvest&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Harvest&lt;br /&gt;
:	Performs the harvesting action for any plant based machinery.&lt;br /&gt;
:  &amp;lt;code&amp;gt;s d0 Harvest 1 # Performs 1 harvest action on device d0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;Horizontal&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Horizontal&lt;br /&gt;
&amp;lt;div id=&amp;quot;HorizontalRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;HorizontalRatio&lt;br /&gt;
&amp;lt;div id=&amp;quot;Idle&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Idle&lt;br /&gt;
&amp;lt;div id=&amp;quot;ImportCount&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ImportCount&lt;br /&gt;
&amp;lt;div id=&amp;quot;Lock&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Lock&lt;br /&gt;
&amp;lt;div id=&amp;quot;Maximum&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Maximum&lt;br /&gt;
&amp;lt;div id=&amp;quot;Mode&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Mode&lt;br /&gt;
&amp;lt;div id=&amp;quot;On&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;On&lt;br /&gt;
&amp;lt;div id=&amp;quot;Open&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Open&lt;br /&gt;
&amp;lt;div id=&amp;quot;Output&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Output&lt;br /&gt;
&amp;lt;div id=&amp;quot;Plant&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Plant&lt;br /&gt;
:    Performs the planting operation for any plant based machinery.&lt;br /&gt;
:  &amp;lt;code&amp;gt;s d0 Plant 1 # Plants one crop in device d0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;PositionX&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PositionX&lt;br /&gt;
&amp;lt;div id=&amp;quot;PositionY&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PositionY&lt;br /&gt;
&amp;lt;div id=&amp;quot;PositionZ&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PositionZ&lt;br /&gt;
&amp;lt;div id=&amp;quot;Power&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Power&lt;br /&gt;
&amp;lt;div id=&amp;quot;PowerActual&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PowerActual&lt;br /&gt;
&amp;lt;div id=&amp;quot;PowerPotential&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PowerPotential&lt;br /&gt;
&amp;lt;div id=&amp;quot;PowerRequired&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PowerRequired&lt;br /&gt;
&amp;lt;div id=&amp;quot;Pressure&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Pressure&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureExternal&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureExternal&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureInteral&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureInteral&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureSetting&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureSetting&lt;br /&gt;
&amp;lt;div id=&amp;quot;Quantity&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Quantity&lt;br /&gt;
:	Total quantity in the device.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Ratio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Ratio&lt;br /&gt;
:	Context specific value depending on device, 0 to 1 based ratio.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioCarbonDioxide&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioCarbonDioxide&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioNitrogen&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioNitrogen&lt;br /&gt;
:	The ratio of nitrogen in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioOxygen&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioOxygen&lt;br /&gt;
:	The ratio of oxygen in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioPollutant&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioPollutant&lt;br /&gt;
:	The ratio of pollutant in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioVolatiles&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioVolatiles&lt;br /&gt;
:	The ratio of volatiles in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioWater&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioWater&lt;br /&gt;
:	The ratio of water in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Reagents&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Reagents&lt;br /&gt;
&amp;lt;div id=&amp;quot;RecipeHash&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RecipeHash&lt;br /&gt;
&amp;lt;div id=&amp;quot;RequestHash&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ReferenceId&lt;br /&gt;
:    Unique Identifier of a Device, this value is different for every device in a save.&lt;br /&gt;
&amp;lt;div id=&amp;quot;ReferenceId&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RequestHash&lt;br /&gt;
&amp;lt;div id=&amp;quot;RequiredPower&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RequiredPower&lt;br /&gt;
&amp;lt;div id=&amp;quot;Setting&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Setting&lt;br /&gt;
&amp;lt;div id=&amp;quot;SolarAngle&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;SolarAngle&lt;br /&gt;
:    Solar angle of the device.&lt;br /&gt;
:  &amp;lt;code&amp;gt;l r0 d0 SolarAngle # Sets r0 to the solar angle of d0.&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;Temperature&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Temperature&lt;br /&gt;
&amp;lt;div id=&amp;quot;TemperatureSettings&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;TemperatureSettings&lt;br /&gt;
&amp;lt;div id=&amp;quot;TotalMoles&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;TotalMoles&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityMagnitude&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityMagnitude&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityRelativeX&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityRelativeX&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityRelativeY&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityRelativeY&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityRelativeZ&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityRelativeZ&lt;br /&gt;
&amp;lt;div id=&amp;quot;Vertical&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Vertical&lt;br /&gt;
:	Vertical setting of the device.&lt;br /&gt;
&amp;lt;div id=&amp;quot;VerticalRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VerticalRatio&lt;br /&gt;
:	Ratio of vertical setting for device.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Volume&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Volume&lt;br /&gt;
:	Returns the device atmosphere volume&lt;br /&gt;
&lt;br /&gt;
==Slot Variables==&lt;br /&gt;
In general (exceptions exist such as filtration units) slots are assigned as follows.&lt;br /&gt;
:Slot 0: Import&lt;br /&gt;
:Slot 1: Export&lt;br /&gt;
:Slot 2: Inside Machine&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Occupied&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Occupied&lt;br /&gt;
:&amp;lt;code&amp;gt;ls r0 d0 2 Occupied #Stores 1 in r0 if d0 has more seeds&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;ls vOccupied dThisVictim 2 Occupied #stores 1 in vOccupied if dThisVictim has more seeds&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;OccupantHash&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;OccupantHash&lt;br /&gt;
&amp;lt;div id=&amp;quot;Quantity&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Quantity&lt;br /&gt;
&amp;lt;div id=&amp;quot;Damage&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Damage&lt;br /&gt;
&amp;lt;div id=&amp;quot;Efficiency&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Efficiency&lt;br /&gt;
&amp;lt;div id=&amp;quot;Health&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Health&lt;br /&gt;
&amp;lt;div id=&amp;quot;Growth&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Growth&lt;br /&gt;
:&amp;lt;code&amp;gt;ls r0 d0 0 Growth # Store the numerical growth stage of d0 in r0&amp;lt;/code&amp;gt; &lt;br /&gt;
&amp;lt;div id=&amp;quot;Pressure&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Pressure&lt;br /&gt;
&amp;lt;div id=&amp;quot;Temperature&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Temperature&lt;br /&gt;
&amp;lt;div id=&amp;quot;Charge&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Charge&lt;br /&gt;
&amp;lt;div id=&amp;quot;ChargeRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ChargeRatio&lt;br /&gt;
&amp;lt;div id=&amp;quot;Class&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Class&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureWaste&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureWaste&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureAir&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureAir&lt;br /&gt;
&amp;lt;div id=&amp;quot;MaxQuantity&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;MaxQuantity&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Mature&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Mature&lt;br /&gt;
:&amp;lt;code&amp;gt;ls r0 d0 0 Mature # Store 1 in r0 if d0 has a mature crop&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;ls vMature dThisVictim 0 Mature # Store 1 in vMature if dThisVictim has a mature crop&amp;lt;/code&amp;gt;&lt;br /&gt;
;ReferenceId&lt;br /&gt;
:    Unique Identifier of a Device, this value is different for every device in a save.&lt;br /&gt;
&amp;lt;div id=&amp;quot;ReferenceId&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=Examples=&lt;br /&gt;
Previous examples were obsolete due to game changes, or confusing, they have been moved into the Discussions section&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Harvie automation===&lt;br /&gt;
This script uses the batch instruction &amp;lt;code&amp;gt;sb ...&amp;lt;/code&amp;gt; to control all Harvie devices on the network. But only one Harvie and one Tray will be the &#039;&#039;master&#039;&#039; and have their values read, the rest of the Harvies will repeat exactly what this unit does. Some problems with this design is that different types of crops mature at different speeds, and if seeds were manually planted and the master unit recieved the first seed, the harvesting action will be performed too early on all the other plants since they are growing a few seconds slower.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot; data-expandtext=&amp;quot;{{int:Expand, Automated Harvie Script}}&amp;quot; data-collapsetext=&amp;quot;{{int:Collapse, Automated Harvie Script}}&amp;quot;&amp;gt;&lt;br /&gt;
{{ICCode|&lt;br /&gt;
alias dHarvie d0&lt;br /&gt;
alias dTray d1&lt;br /&gt;
&lt;br /&gt;
alias rHarvieHash r8&lt;br /&gt;
alias rTrayHash r9&lt;br /&gt;
l rHarvieHash dHarvie PrefabHash&lt;br /&gt;
l rTrayHash dTray PrefabHash&lt;br /&gt;
&lt;br /&gt;
main:&lt;br /&gt;
yield&lt;br /&gt;
#read plant data from the Tray&lt;br /&gt;
ls r0 dTray 0 Mature&lt;br /&gt;
#harvestable plants return 1, young plants return 0&lt;br /&gt;
#nothing planted returns -1&lt;br /&gt;
beq r0 -1 plantCrop&lt;br /&gt;
beq r0 1 harvestCrop&lt;br /&gt;
ls r0 dTray 0 Seeding&lt;br /&gt;
#seeds available returns 1, all seeds picked returns 0&lt;br /&gt;
#plants too young or old for seeds returns -1&lt;br /&gt;
beq r0 1 harvestCrop&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
plantCrop:&lt;br /&gt;
#stop the planting if no seeds available&lt;br /&gt;
#otherwise it will plant nothing repeatedly&lt;br /&gt;
ls r0 dHarvie 0 Occupied&lt;br /&gt;
beq r0 0 main&lt;br /&gt;
sb rHarvieHash Plant 1&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
harvestCrop:&lt;br /&gt;
sb rHarvieHash Harvest 1&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
### End Script ###&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
===Solar Panel 2-axis tracking===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot; data-expandtext=&amp;quot;{{int:Expand, Solar Panel 2-axis tracking}}&amp;quot; data-collapsetext=&amp;quot;{{int:Collapse, Solar Panel 2-axis tracking}}&amp;quot;&amp;gt;&lt;br /&gt;
{{ICCode|&lt;br /&gt;
#2 Axis Solar Tracking adapted from CowsAreEvil.&lt;br /&gt;
#Place all panels in uniform manner.&lt;br /&gt;
#Set one to 15 Vertical(Min value). 0 Horizontal.&lt;br /&gt;
#Take note direction panel faces.&lt;br /&gt;
#Place daylight sensor flat pointing in the direction&lt;br /&gt;
#the panel now faces. (Cable port facing opposite)&lt;br /&gt;
&lt;br /&gt;
#Alias the sensor to d0&lt;br /&gt;
alias sensor d0&lt;br /&gt;
&lt;br /&gt;
# define the Panel variants&lt;br /&gt;
define Heavy -934345724&lt;br /&gt;
define HeavyDual -1545574413&lt;br /&gt;
define Solar -2045627372&lt;br /&gt;
define SolarDual -539224550&lt;br /&gt;
&lt;br /&gt;
start:&lt;br /&gt;
yield&lt;br /&gt;
#Check for daylight.&lt;br /&gt;
l r0 sensor Activate&lt;br /&gt;
beqz r0 reset&lt;br /&gt;
#Read the Horizontal data.&lt;br /&gt;
l r0 sensor Horizontal&lt;br /&gt;
#Set batch to the panels.&lt;br /&gt;
sb Heavy Horizontal r0&lt;br /&gt;
sb HeavyDual Horizontal r0&lt;br /&gt;
sb Solar Horizontal r0&lt;br /&gt;
sb SolarDual Horizontal r0&lt;br /&gt;
#Read the Vertical data and subtract 90&lt;br /&gt;
l r0 sensor Vertical&lt;br /&gt;
sub r0 90 r0&lt;br /&gt;
#Set batch to the panels.&lt;br /&gt;
sb Heavy Vertical r0&lt;br /&gt;
sb HeavyDual Vertical r0&lt;br /&gt;
sb Solar Vertical r0&lt;br /&gt;
sb SolarDual Vertical r0&lt;br /&gt;
j start&lt;br /&gt;
&lt;br /&gt;
reset:&lt;br /&gt;
yield&lt;br /&gt;
sb Heavy Horizontal 270 #Edit this to face sunrise.&lt;br /&gt;
sb HeavyDual Horizontal 270 #Edit this&lt;br /&gt;
sb Solar Horizontal 270 #Edit this&lt;br /&gt;
sb SolarDual Horizontal 270 #Edit this&lt;br /&gt;
sb Heavy Vertical 0&lt;br /&gt;
sb HeavyDual Vertical 0&lt;br /&gt;
sb Solar Vertical 0&lt;br /&gt;
sb SolarDual Vertical 0&lt;br /&gt;
sleep 10&lt;br /&gt;
j start&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
===Example experiment: how many lines of code are executed each tick?===&lt;br /&gt;
To determine this, a script without &amp;lt;code&amp;gt;yield&amp;lt;/code&amp;gt; will be used. It should have as few lines as possible (so no labels are used, but a reset value at the top will be needed) and count the number of lines, the IC Housing will be used to display the result.&lt;br /&gt;
{{ICCode|&lt;br /&gt;
move r0 1   #the first line has number 0&lt;br /&gt;
add r0 r0 3&lt;br /&gt;
s db Setting r0&lt;br /&gt;
j 1&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Result (the numbers appears every 0.5 seconds):&lt;br /&gt;
&amp;lt;br&amp;gt;127&lt;br /&gt;
&amp;lt;br&amp;gt;256 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;385 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;511 (+126)&lt;br /&gt;
&amp;lt;br&amp;gt;640 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;769 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;895 (+126)&lt;br /&gt;
&amp;lt;br&amp;gt;1024 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;1153 (+129)&lt;br /&gt;
&lt;br /&gt;
There is a repeating +129, +129, +126 sequence, a hint that the real value is 128. Which also happens to be the number of lines in a script, which makes sense. A variation of this experiment will show that empty rows are also counted towards this number.&lt;br /&gt;
&lt;br /&gt;
===Push &amp;amp; Pop return address when calling multiple levels of functions===&lt;br /&gt;
More advanced scripts, or scripts that wish to be more generic, may want to allow calling more than one level of function. Allowing this requires pushing the current &amp;lt;code&amp;gt;ra&amp;lt;/code&amp;gt; register before calling the function, then popping &amp;lt;code&amp;gt;ra&amp;lt;/code&amp;gt; back afterward.&lt;br /&gt;
&lt;br /&gt;
For example, imagine that the main loop of the code wants to call function &amp;lt;code&amp;gt;orientPanelsToStar&amp;lt;/code&amp;gt;, which would calculate the panels&#039; orientations, then place them in &amp;lt;code&amp;gt;r0&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;r1&amp;lt;/code&amp;gt;, and then in turn itself call &amp;lt;code&amp;gt;orientPanelsTo&amp;lt;/code&amp;gt;, which would set the orientations of all panels based on the precomputed values of &amp;lt;code&amp;gt;r0&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;r1&amp;lt;/code&amp;gt;. Doing so requires &amp;lt;code&amp;gt;orientPanelsToStar&amp;lt;/code&amp;gt; to push &amp;lt;code&amp;gt;ra&amp;lt;/code&amp;gt; before calling &amp;lt;code&amp;gt;orientPanelsTo&amp;lt;/code&amp;gt;, as show in the code below.&lt;br /&gt;
&lt;br /&gt;
{{ICCode|&lt;br /&gt;
orientPanelsToStar:&lt;br /&gt;
# Save return address set by the &#039;jal&#039; instruction&lt;br /&gt;
push ra&lt;br /&gt;
&lt;br /&gt;
# ...Calculate panels&#039; orientation, for example leaving the results in r0 and r1...&lt;br /&gt;
&lt;br /&gt;
# Now call orientPanelsTo to actually set the panels&#039; orientation&lt;br /&gt;
# based on the computed values of r0 and r1.&lt;br /&gt;
jal orientPanelsTo&lt;br /&gt;
&lt;br /&gt;
# ...Call other functions here if desired...&lt;br /&gt;
&lt;br /&gt;
# Restore the return address of orientPanelsToStar itself&lt;br /&gt;
pop ra&lt;br /&gt;
# Return to caller&lt;br /&gt;
j ra&lt;br /&gt;
&lt;br /&gt;
##########&lt;br /&gt;
&lt;br /&gt;
orientPanelsTo:&lt;br /&gt;
# ...Actually set panels&#039; orientation...&lt;br /&gt;
&lt;br /&gt;
# Return to caller&lt;br /&gt;
j ra&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
This code would behave incorrectly if &amp;lt;code&amp;gt;push ra&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;pop ra&amp;lt;/code&amp;gt; were not present: within &amp;lt;code&amp;gt;orientPanelsToStar&amp;lt;/code&amp;gt;, doing &amp;lt;code&amp;gt;jal orientPanelsTo&amp;lt;/code&amp;gt; would replace the current value of the &amp;lt;code&amp;gt;ra&amp;lt;/code&amp;gt; register, permanently erasing where &amp;lt;code&amp;gt;orientPanelsToStar&amp;lt;/code&amp;gt; itself should jump back to once done. Pushing and popping &amp;lt;code&amp;gt;ra&amp;lt;/code&amp;gt; effectively saves its value until we need it again.&lt;br /&gt;
&lt;br /&gt;
(A tempting but wrong approach to &#039;saving&#039; &amp;lt;code&amp;gt;ra&amp;lt;/code&amp;gt; would be to &amp;lt;code&amp;gt;move&amp;lt;/code&amp;gt; it within a different register (e.g. &amp;lt;code&amp;gt;r15&amp;lt;/code&amp;gt;) before calling &amp;lt;code&amp;gt;orientPanelsTo&amp;lt;/code&amp;gt;, however that only permits two levels of functions, since if &amp;lt;code&amp;gt;orientPanelsTo&amp;lt;/code&amp;gt; itself wants to call another function, it would not be able to use &amp;lt;code&amp;gt;r15&amp;lt;/code&amp;gt; to save its &amp;lt;code&amp;gt;ra&amp;lt;/code&amp;gt; register since &amp;lt;code&amp;gt;r15&amp;lt;/code&amp;gt; already saves &amp;lt;code&amp;gt;orientPanelsToStar&amp;lt;/code&amp;gt;&#039;s return address. Just pushing/popping &amp;lt;code&amp;gt;ra&amp;lt;/code&amp;gt; fixes all issues, allowing for a ginormous maximum function call depth of 512!)&lt;br /&gt;
&lt;br /&gt;
As a last note, if the script will push/pop values like &amp;lt;code&amp;gt;ra&amp;lt;/code&amp;gt;, starting the script by clearing the stack (which where push/pop move the data to) by running &amp;lt;code&amp;gt;clr db&amp;lt;/code&amp;gt; is advisable, unless the IC10 chip is not inserted inside an IC Housing (e.g. inserted in the slot of an Air Conditioner), since &amp;lt;code&amp;gt;clr db&amp;lt;/code&amp;gt; will cause an error in this case. To do so, run &amp;lt;code&amp;gt;clr db&amp;lt;/code&amp;gt; before the script&#039;s main loop.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Links=&lt;br /&gt;
----&lt;br /&gt;
* Stationeers online IC10 Emulators so you can develop your code without repeatedly dying in game&lt;br /&gt;
** [https://ic10.dev/] Stationeers Code Simulator&lt;br /&gt;
** [https://ic10emu.dev] Stationeers IC10 Editor &amp;amp; Emulator - A feature packed code editor for Stationeers IC10 code, paired with a robust debugger and emulator. Edit, test, and share code.&lt;br /&gt;
** [https://stationeering.com/tools/ic] Stationeering provides a simulation of the IC10 chip inside Stationeers. IDE with error checking, full visibility of stack and registers.&lt;br /&gt;
* [http://www.easy68k.com/] EASy68K is a 68000 Structured Assembly Language IDE.&lt;br /&gt;
* [https://marketplace.visualstudio.com/items?itemName=Traineratwot.stationeers-ic10] syntax highlighting for IC10 MIPS for Visual Studio Code (updated Feb 10th 2022)&lt;br /&gt;
* [https://pastebin.com/6Uw1KSRN] syntax highlighting for IC10 MIPS for KDE kwrite/kate text editor&lt;br /&gt;
* [https://drive.google.com/file/d/1yEsJ-u94OkuMQ8K6fY7Ja1HNpLcAdjo_/view] syntax highlighting for IC10 MIPS for Notepad++&lt;br /&gt;
* [https://drive.google.com/file/d/1Xrv5U0ZI5jDcPv7yX7EAAxaGk5hKP0xO/view?usp=sharing] syntax highlighting for IC10 MIPS for Notepad++ (updated: 11/08/2022)&lt;br /&gt;
* [https://pastebin.com/3kmGy0NN] syntax highlighting for IC10 MIPS for Notepad++ (updated: 23/03/2024)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=Index=&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|+Functions &lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
*[[#abs|abs]]&lt;br /&gt;
*[[#add|add]]&lt;br /&gt;
*[[#alias|alias]]&lt;br /&gt;
*[[#and|and]]&lt;br /&gt;
*[[#beq|beq]]&lt;br /&gt;
*[[#bgez|bgez]]&lt;br /&gt;
*[[#bgtz|bgtz]]&lt;br /&gt;
*[[#blez|blez]]&lt;br /&gt;
*[[#bltz|bltz]]&lt;br /&gt;
*[[#bne|bne]]&lt;br /&gt;
*[[#breq|breq]]&lt;br /&gt;
*[[#brgez|brgez]]&lt;br /&gt;
*[[#brgtz|brgtz]]&lt;br /&gt;
*[[#brlez|brlez]]&lt;br /&gt;
*[[#brltz|brltz]]&lt;br /&gt;
*[[#brne|brne]]&lt;br /&gt;
*[[#ceil|cell]]&lt;br /&gt;
*[[#div|div]]&lt;br /&gt;
*[[#exp|exp]]&lt;br /&gt;
*[[#floor|floor]]&lt;br /&gt;
*[[#j|j]]&lt;br /&gt;
*[[#jr|jr]]&lt;br /&gt;
*[[#l|l]]&lt;br /&gt;
*[[#log|log]]&lt;br /&gt;
*[[#ls|ls]]&lt;br /&gt;
*[[#max|max]]&lt;br /&gt;
*[[#min|min]]&lt;br /&gt;
*[[#mod|mod]]&lt;br /&gt;
*[[#move|move]]&lt;br /&gt;
*[[#mul|mul]]&lt;br /&gt;
*[[#nor|nor]]&lt;br /&gt;
*[[#or|or]]&lt;br /&gt;
*[[#rand|rand]]&lt;br /&gt;
*[[#round|round]]&lt;br /&gt;
*[[#s|s]]&lt;br /&gt;
*[[#slt|slt]]&lt;br /&gt;
*[[#sqrt|sqrt]]&lt;br /&gt;
*[[#sub|sub]]&lt;br /&gt;
*[[#trunc|trunc]]&lt;br /&gt;
*[[#xor|xor]]xor&lt;br /&gt;
*[[#yield|yield]]&lt;br /&gt;
*[[##|#]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|+Device Variables &lt;br /&gt;
&amp;lt;div  class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
*[[#Activate|Activate]]&lt;br /&gt;
*[[#AirRelease|AirRelease]]&lt;br /&gt;
*[[#Charge|Charge]]&lt;br /&gt;
*[[#CLearMemory|CLearMemory]]&lt;br /&gt;
*[[#Color|Color]]&lt;br /&gt;
*[[#CompletionRatio|CompletionRatio]]&lt;br /&gt;
*[[#ElevatorLevel|ElevatorLevel]]&lt;br /&gt;
*[[#ElevatorSpeed|ElevatorSpeed]]&lt;br /&gt;
*[[#Error|Error]]&lt;br /&gt;
*[[#ExportCount|ExportCount]]&lt;br /&gt;
*[[#Filtration|Filtration]]&lt;br /&gt;
*[[#Harvest|Harvest]]&lt;br /&gt;
*[[#Horizontal|Horizontal]]&lt;br /&gt;
*[[#HorizontalRatio|HorizontalRatio]]&lt;br /&gt;
*[[#Idle|Idle]]&lt;br /&gt;
*[[#ImportCount|ImportCount]]&lt;br /&gt;
*[[#Lock|Lock]]&lt;br /&gt;
*[[#Maximum|Maximum]]&lt;br /&gt;
*[[#Mode|Mode]]&lt;br /&gt;
*[[#On|On]]&lt;br /&gt;
*[[#Open|Open]]&lt;br /&gt;
*[[#Output|Output]]&lt;br /&gt;
*[[#Plant|Plant]]&lt;br /&gt;
*[[#PositionX|PositionX]]&lt;br /&gt;
*[[#PositionY|PositionY]]&lt;br /&gt;
*[[#PositionZ|PositionZ]]&lt;br /&gt;
*[[#Power|Power]]&lt;br /&gt;
*[[#PowerActual|PowerActual]]&lt;br /&gt;
*[[#PowerPotential|PowerPotential]]&lt;br /&gt;
*[[#PowerRequired|PowerRequired]]&lt;br /&gt;
*[[#Pressure|Pressure]]&lt;br /&gt;
*[[#PressureExternal|PressureExternal]]&lt;br /&gt;
*[[#PressureInteral|PressureInteral]]&lt;br /&gt;
*[[#PressureSetting|PressureSetting]]&lt;br /&gt;
*[[#Quantity|Quantity]]&lt;br /&gt;
*[[#Ratio|Ratio]]&lt;br /&gt;
*[[#RatioCarbonDioxide|RatioCarbonDioxide]]&lt;br /&gt;
*[[#RatioNitrogen|RatioNitrogen]]&lt;br /&gt;
*[[#RatioOxygen|RatioOxygen]]&lt;br /&gt;
*[[#RatioPollutant|RatioPollutant]]&lt;br /&gt;
*[[#RatioVolatiles|RatioVolatiles]]&lt;br /&gt;
*[[#RatioWater|RatioWater]]&lt;br /&gt;
*[[#Reagents|Reagents]]&lt;br /&gt;
*[[#RecipeHash|RecipeHash]]&lt;br /&gt;
*[[#RequestHash|RequestHash]]&lt;br /&gt;
*[[#RequiredPower|RequiredPower]]&lt;br /&gt;
*[[#Setting|Setting]]&lt;br /&gt;
*[[#SolarAngle|SolarAngle]]&lt;br /&gt;
*[[#Temperature|Temperature]]&lt;br /&gt;
*[[#TemperatureSettings|TemperatureSettings]]&lt;br /&gt;
*[[#TotalMoles|TotalMoles]]&lt;br /&gt;
*[[#VelocityMagnitude|VelocityMagnitude]]&lt;br /&gt;
*[[#VelocityRelativeX|VelocityRelativeX]]&lt;br /&gt;
*[[#VelocityRelativeY|VelocityRelativeY]]&lt;br /&gt;
*[[#VelocityRelativeZ|VelocityRelativeZ]]&lt;br /&gt;
*[[#Vertical|Vertical]]&lt;br /&gt;
*[[#VerticalRatio|VerticalRatio]]&lt;br /&gt;
*[[#Volume|Volume]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|+Slot Variables &lt;br /&gt;
&amp;lt;div  class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
*[[#Occupied|Occupied]]&lt;br /&gt;
*[[#OccupantHash|OccupantHash]]&lt;br /&gt;
*[[#Quantity|Quantity]]&lt;br /&gt;
*[[#Damage|Damage]]&lt;br /&gt;
*[[#Efficiency|Efficiency]]&lt;br /&gt;
*[[#Health|Health]]&lt;br /&gt;
*[[#Growth|Growth]]&lt;br /&gt;
*[[#Pressure|Pressure]]&lt;br /&gt;
*[[#Temperature|Temperature]]&lt;br /&gt;
*[[#Charge|Charge]]&lt;br /&gt;
*[[#ChargeRatio|ChargeRatio]]&lt;br /&gt;
*[[#Class|Class]]&lt;br /&gt;
*[[#PressureWaste|PressureWaste]]&lt;br /&gt;
*[[#PressureAir|PressureAir]]&lt;br /&gt;
*[[#MaxQuantity|MaxQuantity]]&lt;br /&gt;
*[[#Mature|Mature]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=IC10&amp;diff=22348</id>
		<title>IC10</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=IC10&amp;diff=22348"/>
		<updated>2024-12-22T11:41:54Z</updated>

		<summary type="html">&lt;p&gt;Wark: added &amp;quot;Logic gates, bitwise and logical&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:IC10 Programming]]&lt;br /&gt;
=Scripting language for IC10 housings / chips=&lt;br /&gt;
MIPS is [[Stationeers]]&#039; inspiration for the in-game scripting language called IC10. It runs on [[Integrated Circuit (IC10)|IC10 chips]] crafted at the [[Electronics Printer]]. &lt;br /&gt;
&lt;br /&gt;
==Registers==&lt;br /&gt;
Internal registers &#039;&#039;&#039;r?&#039;&#039;&#039;: The IC contains 16 CPU registers, numbered &#039;&#039;&#039;r0&#039;&#039;&#039; to &#039;&#039;&#039;r15&#039;&#039;&#039;. From now on referred to as &#039;&#039;&#039;r?&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Device registers &#039;&#039;&#039;d? logicType&#039;&#039;&#039;: Device registers are written to and from the IC. A device register is numbered &#039;&#039;&#039;d0&#039;&#039;&#039; to &#039;&#039;&#039;d5&#039;&#039;&#039; (select via screw), or &#039;&#039;&#039;db&#039;&#039;&#039; (connected device). From now on referred to as &#039;&#039;&#039;d?&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
=== Logic and algorithmic with &#039;&#039;&#039;Internal registers&#039;&#039;&#039; ===&lt;br /&gt;
All calculations are exclusively performed to and from &#039;&#039;&#039;r?&#039;&#039;&#039; registers, or generally more understood as variables in programming. You can use aliases to give convenient names with the &amp;lt;code&amp;gt;alias string r?|d?&amp;lt;/code&amp;gt;command (see below). &lt;br /&gt;
&lt;br /&gt;
Internal registers can be manipulated in various ways. &lt;br /&gt;
* Write constant values &amp;lt;code&amp;gt;move r? (r?|num)&amp;lt;/code&amp;gt;: Example: &amp;lt;code&amp;gt;move r0 2&amp;lt;/code&amp;gt; sets r0 to the number 2.&lt;br /&gt;
* Calculate: Calculations are done to- and from these registers, like &amp;lt;code&amp;gt;add r? a(r?|num) b(r?|num)&amp;lt;/code&amp;gt;. Example: &amp;lt;code&amp;gt;add r1 r0 3&amp;lt;/code&amp;gt; adds 3 to r0, and writes to r1.&lt;br /&gt;
&lt;br /&gt;
Note, for any kind of if statements or loop behaviours, knowing about labels, branching, and jumps is essential knowledge. See below.&lt;br /&gt;
&lt;br /&gt;
=== IO to &#039;&#039;&#039;Device registers&#039;&#039;&#039; ===&lt;br /&gt;
Acronym &#039;&#039;&#039;d?&#039;&#039;&#039; stands for device, where ? is a number corresponding to the screw device selector on the socket.&lt;br /&gt;
You can also read/write to the device where the IC is planted in using device &#039;&#039;&#039;db&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Generally, there are up to 6 devices which can be set using the screwdriver &#039;&#039;&#039;d0&#039;&#039;&#039; to &#039;&#039;&#039;d5&#039;&#039;&#039;. A special device register &#039;&#039;&#039;db&#039;&#039;&#039; is the device wherever the IC is mounted upon. Very convenient for atmospheric devices where no separate IC socket is required.&lt;br /&gt;
&lt;br /&gt;
Note, the IC is completely unaware where d? is actually connected to. So if you get a logicType error, check d? number, or check if the screw has been set on the socket. An alias is only convenient to convey what is expected to be set on the d? screw, it does not actually set or program the screq.&lt;br /&gt;
&lt;br /&gt;
* Read from device (load) &amp;lt;code&amp;gt;l r? d? logicType&amp;lt;/code&amp;gt;: Reads logicType, like Pressure from a [[Sensors|gas sensor]], from device d? to register r?. Values can be read from connected devices and put into the register using the &#039;&#039;&#039;l&#039;&#039;&#039; (load) command. For example, if you want to load the state of a door. &amp;lt;br&amp;gt; Example: &amp;lt;code&amp;gt;l r0 Door Open&amp;lt;/code&amp;gt; reads the &#039;Open&#039; field of an object named &#039;Door&#039;, that would be connected to the IC housing of the chip.&lt;br /&gt;
* Write to a device (set) &amp;lt;code&amp;gt;s d? logicType r?&amp;lt;/code&amp;gt;: Write a value from a register back to a device using the command &amp;lt;code&amp;gt;s d? logicType r?&amp;lt;/code&amp;gt;. For example, if d0 is set to a door using the screwdriver, &amp;lt;code&amp;gt;s d0 Open 0&amp;lt;/code&amp;gt; sets the &#039;Open&#039; status of the d0 (a door) to 0, effectively closing the door.&lt;br /&gt;
&lt;br /&gt;
=== batch IO to - &#039;&#039;&#039;Device registers&#039;&#039;&#039; ===&lt;br /&gt;
&#039;&#039;&#039;Batch writing&#039;&#039;&#039; needs to be done to a specific &#039;&#039;&#039;deviceHash&#039;&#039;&#039; instead of d?. Is unique per device type, which you can find in the [[Stationpedia]] entries.&lt;br /&gt;
* &amp;lt;code&amp;gt;lb r? deviceHash logicType batchMode&amp;lt;/code&amp;gt; &lt;br /&gt;
* &amp;lt;code&amp;gt;sb deviceHash logicType r?&amp;lt;/code&amp;gt;&lt;br /&gt;
Additionally, using the following batch commands, a &#039;&#039;&#039;nameHash&#039;&#039;&#039; can be provided to only modify devices with a certain name.&lt;br /&gt;
* &amp;lt;code&amp;gt;lbn r? deviceHash nameHash logicType batchMode &amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;sbn deviceHash nameHash logicType r?&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;batchMode&#039;&#039;&#039; is a parameter equal to 0, 1, 2, or 3. These are also defined as the constants &#039;&#039;&#039;Average&#039;&#039;&#039;, &#039;&#039;&#039;Sum&#039;&#039;&#039;, &#039;&#039;&#039;Minimum&#039;&#039;&#039;, and &#039;&#039;&#039;Maximum&#039;&#039;&#039; respectively. The word or number can be used.&lt;br /&gt;
&lt;br /&gt;
Combining one of these functions with the &amp;lt;code&amp;gt;HASH()&amp;lt;/code&amp;gt; function can be advantageous:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;lbn r0 HASH(&amp;quot;StructureGasSensor&amp;quot;) HASH(&amp;quot;Sensor 1&amp;quot;) Temperature Average&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This code will load the average temperature of all gas sensors on the network named &amp;quot;Sensor 1&amp;quot; onto register &#039;&#039;&#039;r0&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If the batch read (lb/lbn) is done on a network without any matching devices the results will be as specified in the table:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ Batch read with no devices&lt;br /&gt;
|-&lt;br /&gt;
! Batch Mode !! Result&lt;br /&gt;
|-&lt;br /&gt;
| Average (0) || nan&lt;br /&gt;
|-&lt;br /&gt;
| Sum (1) || 0&lt;br /&gt;
|-&lt;br /&gt;
| Minimum (2) || inf&lt;br /&gt;
|-&lt;br /&gt;
| Maximum (3) || ninf&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Examples ===&lt;br /&gt;
&lt;br /&gt;
Here are some examples demonstrating all three operations:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 10&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Sets register &#039;&#039;&#039;r0&#039;&#039;&#039; to the value 10&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 r1&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Copies the value of register &#039;&#039;&#039;r1&#039;&#039;&#039; to register &#039;&#039;&#039;r0&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r0 d0 Temperature&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Reads the Temperature parameter from device &#039;&#039;&#039;d0&#039;&#039;&#039; and places the value in register &#039;&#039;&#039;r0&#039;&#039;&#039;.&lt;br /&gt;
Note: not all devices have a Temperature parameter, check the in-game stationpedia.&lt;br /&gt;
&lt;br /&gt;
To set a device specific value (like &#039;&#039;&#039;On&#039;&#039;&#039;), you can write into this value.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s d0 On r0&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Writes the value from register &#039;&#039;&#039;r0&#039;&#039;&#039; out to &#039;&#039;&#039;On&#039;&#039;&#039; parameter of device &#039;&#039;&#039;d0&#039;&#039;&#039;. In this example the device will be turned On, if valve of register r0 equals 1, otherwise (register r0 equals 0) it will turned off. See section [[IC10#Device_Variables|Device Variables]].&lt;br /&gt;
&lt;br /&gt;
It&#039;s recommended to use labels (like: &#039;&#039;someVariable&#039;&#039;) instead of a direct reference to the register. See &#039;&#039;&#039;alias&#039;&#039;&#039; in section [[IC10#Instructions|Instructions]].&lt;br /&gt;
&lt;br /&gt;
=== Special registers ===&lt;br /&gt;
There are two more registers. One called &#039;&#039;&#039;ra&#039;&#039;&#039; (return address) and one called &#039;&#039;&#039;sp&#039;&#039;&#039; (stack pointer). The &#039;&#039;&#039;ra&#039;&#039;&#039; is used by certain jump and branching instructions (those ending with &#039;&#039;&#039;-al&#039;&#039;&#039;) to remember which line in the script it should return to. The &#039;&#039;&#039;sp&#039;&#039;&#039; tracks the next index within the stack (a memory that can store up to 512 values) to be pushed (written) to or popped (read) from. Neither &#039;&#039;&#039;ra&#039;&#039;&#039; or &#039;&#039;&#039;sp&#039;&#039;&#039; is protected, their values can be changed by instructions like any other register.&lt;br /&gt;
&lt;br /&gt;
==Stack Memory==&lt;br /&gt;
The Stack is a memory that can hold 512 different values. Each IC10 has its own Stack, and some devices (like the Logical Sorter) also have a Stack.&lt;br /&gt;
;push r?: adds the value  &#039;&#039;&#039;r?&#039;&#039;&#039; and increments the &#039;&#039;&#039;sp&#039;&#039;&#039; by 1.&lt;br /&gt;
;pop r?: loads the value in the stack memory at index &amp;lt;code&amp;gt;sp-1&amp;lt;/code&amp;gt; into register &#039;&#039;&#039;r?&#039;&#039;&#039; and decrements the &#039;&#039;&#039;sp&#039;&#039;&#039; by 1.&lt;br /&gt;
;peek r?: loads the value in the stack memory at index &amp;lt;code&amp;gt;sp-1&amp;lt;/code&amp;gt; into register &#039;&#039;&#039;r?&#039;&#039;&#039;.&lt;br /&gt;
;get r? d? address(r?|num): loads the value in the stack memory at index &amp;lt;code&amp;gt;address&amp;lt;/code&amp;gt; on provided device into register &#039;&#039;&#039;r?&#039;&#039;&#039;.&lt;br /&gt;
;getd r? id(r?|num) address(r?|num): loads the value in the stack memory at index &amp;lt;code&amp;gt;address&amp;lt;/code&amp;gt; on provided device id into register &#039;&#039;&#039;r?&#039;&#039;&#039;.&lt;br /&gt;
;put d? address(r?|num) value(r?|num): adds the value to the stack memory off the provided device at index &amp;lt;code&amp;gt;address&amp;lt;/code&amp;gt;.&lt;br /&gt;
;putd id(r?|num) address(r?|num) value(r?|num) : adds the value to the stack memory off the provided device id at index &amp;lt;code&amp;gt;address&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
As mentioned previously, &#039;&#039;&#039;sp&#039;&#039;&#039; can be both written to and read from any time. When reading (&#039;&#039;&#039;peek&#039;&#039;&#039; or &#039;&#039;&#039;pop&#039;&#039;&#039;), &#039;&#039;&#039;sp&#039;&#039;&#039; must be between 1 and 512, inclusive. While writing (&#039;&#039;&#039;push&#039;&#039;&#039;), &#039;&#039;&#039;sp&#039;&#039;&#039; must be between 0 and 511, inclusive.&lt;br /&gt;
&lt;br /&gt;
Stack memory is persistent on logic chips. This means that if you have a logic chip and push values to the stack, the code that pushes those values can be removed and the stack will retain those values.&lt;br /&gt;
&lt;br /&gt;
Note that this does not carry over to any other logic chips which receive the program of the original; They will need to have their stack memories programmed individually.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Stack Traversing&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Traversing the stack can be done similarly to how an array would be traversed in some other languages:&lt;br /&gt;
{{ICCode|&lt;br /&gt;
#this will traverse indices {min value} through {max value}-1&lt;br /&gt;
move sp {min value}&lt;br /&gt;
loop:&lt;br /&gt;
add sp sp 1&lt;br /&gt;
peek r0&lt;br /&gt;
&lt;br /&gt;
#do something here with your stack values (loaded into r0)&lt;br /&gt;
&lt;br /&gt;
blt sp {max value} loop&lt;br /&gt;
&lt;br /&gt;
#continue on&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Alternatively, you can use the pop function&#039;s decrementing to make a more efficient loop:&lt;br /&gt;
{{ICCode|&lt;br /&gt;
move sp {max value}&lt;br /&gt;
add sp sp 1&lt;br /&gt;
loop:&lt;br /&gt;
pop r0&lt;br /&gt;
&lt;br /&gt;
#do something here with your stack values (loaded into r0)&lt;br /&gt;
&lt;br /&gt;
bgt sp {min value} loop&lt;br /&gt;
&lt;br /&gt;
#continue on&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Comments==&lt;br /&gt;
Comments can be placed using a &#039;&#039;&#039;#&#039;&#039;&#039; symbol. All comments are ignored by the game when it reads commands. Below is an example of valid code with two comments.&lt;br /&gt;
{{ICCode|&lt;br /&gt;
alias MyAlias r0 # Text after the hash tag will be ignored to the end of the line.&lt;br /&gt;
# You can also write comments on their own lines, like this.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Device Ports==&lt;br /&gt;
ICs can interact with up to 6 other devices via d0 - d5, as well as the device it&#039;s attached to via db. To change or set a device, use a screwdriver and adjust the device in the IC housing. You can read or set any of the device&#039;s properties, so it is possible to do things like read the pressure or oxygen content of a room on the same Device port. &lt;br /&gt;
&lt;br /&gt;
Additionally, is possible to set other IC housings as devices, allowing you to create programs that run across multiple ICs together. For example, an Gas Mixing IC could check the &#039;&#039;&#039; Setting&#039;&#039;&#039;  field of a Atmosphere Sensor IC and act based on the value of the sensor chip.&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;l&#039;&#039;&#039; (load) or &#039;&#039;&#039;s&#039;&#039;&#039; (set) instructions you have to read or set these values to your device. Examples:&lt;br /&gt;
{{ICCode|&lt;br /&gt;
#Reads the &#039;Temperature&#039; from an atmosphere sensor&lt;br /&gt;
# at device port &#039;d0&#039; into register &#039;r0&#039;.&lt;br /&gt;
l r0 d0 Temperature&lt;br /&gt;
}} &lt;br /&gt;
{{ICCode|&lt;br /&gt;
# Writes the value of the register &#039;r0&#039; to the&lt;br /&gt;
# device on port &#039;d1&#039; into the variable &#039;Setting&#039;.&lt;br /&gt;
s d1 Setting r0&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Labels==&lt;br /&gt;
Labels are used to make it easier to jump between lines in the script. The label will have a numerical value that is the same as its line number. Even though it&#039;s possible to use a labels value for calculations, doing so is a bad idea since any changes to the code can change the line numbers of the labels.&lt;br /&gt;
{{ICCode|&lt;br /&gt;
main: # define a jump mark with label &#039;main&#039;&lt;br /&gt;
j main # jumps back to &#039;main&#039;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Constants==&lt;br /&gt;
Instead of using a register to store a fixed value, a constant can be made. Using this name will refer to the assigned value. With the help of Constants you can save register places.&lt;br /&gt;
{{ICCode|&lt;br /&gt;
# defines a Constant with name &#039;pi&#039;&lt;br /&gt;
# and set its value to 3.14159&lt;br /&gt;
define pi 3.14159&lt;br /&gt;
}} &lt;br /&gt;
&lt;br /&gt;
You can use these constants like any other variables (see: alias in section [[IC10#Instructions|Instructions]]). Example:&lt;br /&gt;
{{ICCode|&lt;br /&gt;
# set the value of register &#039;r0&#039; to the value of constant named &#039;pi&#039;.&lt;br /&gt;
move r0 pi &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Numeric values==&lt;br /&gt;
Registers and constants are usually decimal values using double-precision floating point (confirmed?).&lt;br /&gt;
&lt;br /&gt;
Unlike real CPU architectures, integers are not supported as a distinct type, but double FP can represent integers up to about 54 bits before rounding causes problems (the exact number depending what bit patterns you happen to have).&lt;br /&gt;
&lt;br /&gt;
Numbers can be written in hexadecimal by preceding the value with a $ symbol. Values larger than 54 bits might get corrupted. Hex numbers are typically used for ReferenceId values.&lt;br /&gt;
&lt;br /&gt;
Examples: &lt;br /&gt;
{{ICCode|&lt;br /&gt;
move r0 12345&lt;br /&gt;
move r1 123.456&lt;br /&gt;
move r2 $E1B2&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Indirect referencing==&lt;br /&gt;
This is a way of accessing a register by using another register as a pointer. Adding an additional r in front of the register turns on this behaviour. The value stored in the register being used as the pointer must be between 0 to 15, this will then point to a register from r0 to r15, higher or lower values will cause an error.&lt;br /&gt;
{{ICCode|&lt;br /&gt;
move r0 5 # stores the value 5 in r0&lt;br /&gt;
move rr0 10 &lt;br /&gt;
# is now the same as &#039;move r5 10&#039; &lt;br /&gt;
# since r0 has the value 5, rr0 points at the register r5&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Additional r&#039;s can be added to do indirect referencing multiple times in a row.&lt;br /&gt;
{{ICCode|&lt;br /&gt;
move r1 2&lt;br /&gt;
move r2 3&lt;br /&gt;
move rrr1 4&lt;br /&gt;
# is now the same as &#039;move r3 4&#039;&lt;br /&gt;
# since r1 points at r2 which points at r3&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
This also works with devices&lt;br /&gt;
{{ICCode|&lt;br /&gt;
move r0 2 # stores the value 2 in r0&lt;br /&gt;
s dr0 On 1 &lt;br /&gt;
# is now the same as &#039;s d2 On 1&#039;&lt;br /&gt;
# r0 has the value 2 so dr0 points at d2&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Dynamically changing LogicType when interacting with Device Registers ==&lt;br /&gt;
When the &amp;lt;code&amp;gt;l&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;s&amp;lt;/code&amp;gt; instructions are used to read from or write to a Device Register, the LogicType is the variable that will be interacted with (example: in &amp;lt;code&amp;gt;l r0 myDevice Temperature&amp;lt;/code&amp;gt; the LogicType is the Temperature). In most scripts the LogicType will be hardcoded. But it&#039;s possible to change the LogicType dynamically by placing the &amp;lt;code&amp;gt;LogicType.xxx&amp;lt;/code&amp;gt; equivalent inside a register, and then using that register as the LogicType. The &amp;lt;code&amp;gt;LogicType.xxx&amp;lt;/code&amp;gt; values can be stored on and retrieved from the Stack.&lt;br /&gt;
{{ICCode|&lt;br /&gt;
move r1 LogicType.Temperature&lt;br /&gt;
l r0 myDevice r1&lt;br /&gt;
# read the Temperature from myDevice and store it in r0&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Network Referencing / Channels==&lt;br /&gt;
&lt;br /&gt;
All cable networks have 8 Channels which can have data loaded from/stored to via a device and connection reference. Connections for each supported device are listed in the stationpedia. All &#039;connections&#039; a device can make are a connection (pipe, chute, cable), but only cable networks have channels.&lt;br /&gt;
&lt;br /&gt;
The 8 channels (Channel0 to Channel7) are however volatile, in that data is destroyed if any part of the cable network is changed, removed, or added to, and also whenever the world is exited. All these channels default to NaN. Strictly speaking, they default to what we would call &amp;quot;quiet NaN&amp;quot;, in that its not an error it simply means its not a number yet. Recommend you use these channels for reading and writing between networks, rather than as a data store. This effectively means an IC can read all the networks for all devices to connected to it, so not just their own local network, but any networks any device they can reference is connected to.&lt;br /&gt;
{{ICCode|&lt;br /&gt;
# d0 is device zero, and the :0 refers&lt;br /&gt;
# to that device&#039;s 0 connection&lt;br /&gt;
l r0 d0:0 Channel0}}&lt;br /&gt;
&lt;br /&gt;
For example: on an IC Housing, the 0 connection is the data port and 1 is power, so you could write out r0 to Channel0 of the power network of the Housing using &amp;lt;code&amp;gt;s db:1 Channel0 r0&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Logic gates, Bitwise and Logical==&lt;br /&gt;
&lt;br /&gt;
All logic gates in MIPS have a bitwise behavior. The available gates are NOT, AND, OR, XOR and NOR (XNOR and NAND are missing).&lt;br /&gt;
&lt;br /&gt;
In Bitwise operations, each bit is matched separately, which includes the sign bit.&lt;br /&gt;
&lt;br /&gt;
To understand what is going on with bitwise operations, a little bit of computer theory is needed. In Stationeers each register uses 64 bits for integer values (a number without decimals), where the 64th bit is the sign-bit (0 for positive and 1 for negative). Since the number 0 is counted as a positive value, this gives each register a range of (2^63 - 1) to -2^63. Negative numbers also behave according to Two&#039;s complement (https://en.wikipedia.org/wiki/Two%27s_complement). Which means that a number with a sign-bit of 1 will have all of its number bits flipped as well, so that the decimal value of -1 is represented by a binary value of sixtyfour 1&#039;s (this is the smallest possible negative integer since zero counts as a positive integer).&lt;br /&gt;
&lt;br /&gt;
MIPS have binary notation (https://en.wikipedia.org/wiki/Binary_number) that is activated by placing a % in front of the number. The _ characters are ignored and only used for readability.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;not r0 0&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;# 0 = %00000000_00000000_00000000_00000000_00000000_00000000_00000000_00000000&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;# flip all bits&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;# -1 = %11111111_11111111_11111111_11111111_11111111_11111111_11111111_11111111&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;# r0 equals -1&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;and r0 3 6&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;# 3 = %011&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;# 6 = %110&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;# only the bits in the &amp;quot;2&amp;quot; position are matching&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;# r0 equals %010 = 2&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Logical operations can still be performed via alternative instructions. But these are not perfect substitutes, they treat negative values differently, and some can produce non-binary outputs. When using these, keep in mind that devices that wants a binary value will treat any non-binary values like this: &amp;gt;= 1 counts as &amp;quot;1&amp;quot; and &amp;lt;1 counts as &amp;quot;0&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;# r0 = result&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;# r1 = input A&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;# r2 = input B&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;Logical NOT = seqz r0 r1&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;Logical AND = min r0 r1 r2&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;Logical OR = max r0 r1 r2&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;Logical XOR = sne r0 r1 r2 (only for binary inputs)&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;Logical NAND = not and&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;Logical NOR = not or&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;Logical XNOR = not xor&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Debugging advices==&lt;br /&gt;
The value stored in a register or variable can easily be displayed by writing it to the Setting parameter of the IC housing. This has no side effects. To see the value, just stand close to the IC housing and look directly at the housing.&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;s db Setting r0&amp;lt;/code&amp;gt;. # sets/writes the value of register &#039;&#039;&#039;r0&#039;&#039;&#039; into the parameter &#039;&#039;&#039;Setting&#039;&#039;&#039; of the IC Housing(&#039;&#039;&#039;db&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
To check if a certain block of code is executed, use the above trick but with a random number that you choose, like the line number.&amp;lt;br&amp;gt; This example will display the number 137 on the IC housing.&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;s db Setting 137&amp;lt;/code&amp;gt;  # sets/writes the number 137 into the parameter &#039;&#039;&#039;Setting&#039;&#039;&#039; of the IC Housing(&#039;&#039;&#039;db&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
Always use unique names for labels. When a label is named after a IC10 keyword like &amp;quot;Temperature:&amp;quot; or &amp;quot;Setting:&amp;quot; the original meaning of the keyword is overwritten, so when an instruction tries to use it an error will occur.&lt;br /&gt;
&lt;br /&gt;
A [[Cartridge#Configuration|configuration cartridge]] installed in a [[Handheld_Tablet|tablet]]  can be used to see all available values and configuration parameter for all devices you focus on.&lt;br /&gt;
&lt;br /&gt;
==Learning IC10==&lt;br /&gt;
IC10 can be difficult to get started with. So here is a list of instructions that are useful for beginners. These can be used to write many different scripts.&lt;br /&gt;
&lt;br /&gt;
General:&lt;br /&gt;
* &amp;lt;code&amp;gt;alias&amp;lt;/code&amp;gt; make the script easier to read by assigning a name to a register or device, example: &amp;lt;code&amp;gt;alias rTemperature r15&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;label:&amp;lt;/code&amp;gt; where &amp;quot;label&amp;quot; can be replaced with almost any word, jump and branch instructions can use these in place of line numbers, example: &amp;lt;code&amp;gt;start:&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;yield&amp;lt;/code&amp;gt; pause for 1-tick and then resume, if not used the script will automatically pause for 1-tick after 128 lines&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Jumps:&lt;br /&gt;
*&amp;lt;code&amp;gt;j someLabelName&amp;lt;/code&amp;gt; jump to line with &#039;&#039;&#039;someLabelName&#039;&#039;&#039;&lt;br /&gt;
*&amp;lt;code&amp;gt;jal someLabelName&amp;lt;/code&amp;gt; stores the next line number into the register ra (return address) and then jump to &#039;&#039;&#039;someLabelName&#039;&#039;&#039;&lt;br /&gt;
*&amp;lt;code&amp;gt;j ra&amp;lt;/code&amp;gt; jump to register ra (return address)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Branching (jump-if):&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;beq a(r?|num) b(r?|num) c(r?|num)&amp;lt;/code&amp;gt; if &#039;&#039;&#039;a&#039;&#039;&#039; is equal to &#039;&#039;&#039;b&#039;&#039;&#039; goto &#039;&#039;&#039;c&#039;&#039;&#039;  (label or linenumber) &amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;bne a(r?|num) b(r?|num) c(r?|num)&amp;lt;/code&amp;gt; if  &#039;&#039;&#039;a&#039;&#039;&#039; not-equal &#039;&#039;&#039;b&#039;&#039;&#039; goto  &#039;&#039;&#039;c&#039;&#039;&#039; (label or linenumber) &amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;bgt a(r?|num) b(r?|num) c(r?|num)&amp;lt;/code&amp;gt; if  &#039;&#039;&#039;a&#039;&#039;&#039; greater than &#039;&#039;&#039;b&#039;&#039;&#039; goto   &#039;&#039;&#039;c&#039;&#039;&#039; (label or linenumber) &amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;blt a(r?|num) b(r?|num) c(r?|num)&amp;lt;/code&amp;gt; if  &#039;&#039;&#039;a&#039;&#039;&#039; less than &#039;&#039;&#039;b&#039;&#039;&#039; goto &#039;&#039;&#039;c&#039;&#039;&#039; (label or linenumber) &amp;lt;br&amp;gt;&lt;br /&gt;
The suffix -al can be added to each of these (example: beqal) to save the &#039;&#039;&#039;next&#039;&#039;&#039; line number into the &amp;quot;return address&amp;quot; register. this is called using &amp;lt;code&amp;gt;j ra&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Device interactions:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
l (load)&lt;br /&gt;
lb (load batch, requires one of the following: 0(Average) / 1(Sum) / 2(Minimum) / 3(Maximum))&lt;br /&gt;
ls (load slot)&lt;br /&gt;
s (store)&lt;br /&gt;
sb (store batch)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Logic and Math:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
seqz (common NOT-gate: turns 0 into 1, and all other values into 0)&lt;br /&gt;
move&lt;br /&gt;
add (addition)&lt;br /&gt;
sub (subtraction)&lt;br /&gt;
mul (multiplication)&lt;br /&gt;
div (division)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Common device variables:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
On (1 is on, 0 is off)&lt;br /&gt;
Open (1 is open, 0 is closed)&lt;br /&gt;
Setting (meaning varies between devices, example: a LED display(console) will show this value)&lt;br /&gt;
Activate (1 usually means running, example: a Daylight sensor is 1 when the sun shines on it)&lt;br /&gt;
Temperature (in Kelvin, Celsius - 273.15)&lt;br /&gt;
Pressure (in kPa)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Notes:&lt;br /&gt;
&amp;lt;br&amp;gt;-All instructions and variables can be seen in-game in the IC editor window by clicking the &amp;quot;f&amp;quot;, &amp;quot;x&amp;quot; and &amp;quot;s(x)&amp;quot; buttons on the top right.&lt;br /&gt;
&amp;lt;br&amp;gt;-The stationpedia is the best source to see which variables are available to each device.&lt;br /&gt;
&amp;lt;br&amp;gt;-Most scripts are loops, they end with a jump instruction that leads back up to the start. Otherwise they will just run once and then stop.&lt;br /&gt;
&lt;br /&gt;
Two practice scripts:&lt;br /&gt;
&amp;lt;br&amp;gt;Automatic Night Light: Load &amp;quot;Activate&amp;quot; from a Daylight sensor, flip the value with a NOT-gate, store the value to the &amp;quot;On&amp;quot; variable of one or more lights.&lt;br /&gt;
&amp;lt;br&amp;gt;Automatic Wall Cooler: Read &amp;quot;Temperature&amp;quot; from a Gas Sensor. Branch if the value is greater than X, turn on the cooler. Branch if the value is less than Y, turn off the cooler. (Wall coolers need a minimum of 12.5 kPa pressure in the connected pipe)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Accessing devices via batch or ReferenceId ==&lt;br /&gt;
&lt;br /&gt;
The IC housing has 6 pins you can use to configure the devices it&lt;br /&gt;
uses.  This provides flexibility to let the installer configure which&lt;br /&gt;
devices will be controlled by the IC.&lt;br /&gt;
&lt;br /&gt;
Alternatives for accessing devices include the batch load/store and&lt;br /&gt;
the ReferenceId load/store instructions.&lt;br /&gt;
&lt;br /&gt;
{{ICCode|&lt;br /&gt;
# get the average charge ratio across station batteries&lt;br /&gt;
lb r0 HASH(&amp;quot;StructureBattery&amp;quot;) Ratio Average&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{ICCode|&lt;br /&gt;
# get the ReferenceId for the sorter named &amp;quot;Sorter Corn&amp;quot;&lt;br /&gt;
lbn r1 HASH(&amp;quot;StructureLogicSorter&amp;quot;) HASH(&amp;quot;Sorter Corn&amp;quot;) ReferenceId Maximum&lt;br /&gt;
ble r1 ninf ra&lt;br /&gt;
#use the ReferenceId to set that sorter&#039;s mode.&lt;br /&gt;
sd r1 Mode 1&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Using the 6 configuration pins makes it easy to write reusable MIPS&lt;br /&gt;
scripts where the installer uses the pins to select the devices that&lt;br /&gt;
will be managed.&lt;br /&gt;
&lt;br /&gt;
Using batch-name instructions frees you from the hassle of adjusting&lt;br /&gt;
the pins, but requires you to name the devices via the [[Labeller]].  It&lt;br /&gt;
can also allow you to control more than 6 devices.&lt;br /&gt;
&lt;br /&gt;
=== Batch instructions ===&lt;br /&gt;
&lt;br /&gt;
The batch instructions can address multiple devices only via their &#039;&#039;&#039;PrefabHash&#039;&#039;&#039; generated from the prefab name using the `HASH(&amp;quot;Name&amp;quot;)` macro or copied directly from the [[Stationpedia]]. A prefab hash is always an integer. All devices that can be read with logic contain the logic value &#039;&#039;&#039;PrefabHash&#039;&#039;&#039; and &#039;&#039;&#039;NameHash&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
See [[#Slot.2FLogic_.2F_Batched|Batched instructions]] for a comprehensive list of all batch instructions.&lt;br /&gt;
&lt;br /&gt;
[[#sb|sb]], [[#sbn|sbn]], [[#sbs|sbs]], (no sbns)&amp;lt;br&amp;gt;&lt;br /&gt;
[[#lb|lb]], [[#lbs|lbs]], [[#lbn|lbn]], [[#lbns|lbns]]&lt;br /&gt;
&lt;br /&gt;
=== Direct reference instructions ===&lt;br /&gt;
&lt;br /&gt;
Direct reference instructions can address a specific device via its &#039;&#039;&#039;ReferenceId&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
[[#clrd|clrd]], [[#getd|getd]], [[#putd|putd]],&amp;lt;br&amp;gt;&lt;br /&gt;
[[#ld|ld]], [[#sd|sd]], (no slot access via reference ID)&lt;br /&gt;
&lt;br /&gt;
=Instructions=&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
See [[IC10/instructions]]&lt;br /&gt;
&lt;br /&gt;
{{:IC10/instructions}}&lt;br /&gt;
&lt;br /&gt;
[https://www.cs.tufts.edu/comp/140/lectures/Day_3/mips_summary.pdf Other examples]&lt;br /&gt;
&lt;br /&gt;
== Conditional functions cheatsheet ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! suffix !! description !! branch to line !! branch and store return address !! relative jump to line !! set register&lt;br /&gt;
|-&lt;br /&gt;
| prefix: ||  || b- || b-al || br- || s-&lt;br /&gt;
|-&lt;br /&gt;
|  || unconditional || j    || jal    || jr    || &lt;br /&gt;
|-&lt;br /&gt;
| -eq  || if a == b || beq  || beqal  || breq  || seq&lt;br /&gt;
|-&lt;br /&gt;
| -eqz || if a == 0 || beqz || beqzal || breqz || seqz&lt;br /&gt;
|-&lt;br /&gt;
| -ge  || if a &amp;gt;= b || bge  || bgeal  || brge  || sge&lt;br /&gt;
|-&lt;br /&gt;
| -gez || if a &amp;gt;= 0 || bgez || bgezal || brgez || sgez&lt;br /&gt;
|-&lt;br /&gt;
| -gt  || if a &amp;gt; b  || bgt  || bgtal  || brgt  || sgt&lt;br /&gt;
|-&lt;br /&gt;
| -gtz || if a &amp;gt; 0  || bgtz || bgtzal || brgtz || sgtz&lt;br /&gt;
|-&lt;br /&gt;
| -le  || if a &amp;lt;= b || ble  || bleal  || brle  || sle&lt;br /&gt;
|-&lt;br /&gt;
| -lez || if a &amp;lt;= 0 || blez || blezal || brlez || slez&lt;br /&gt;
|-&lt;br /&gt;
| -lt  || if a &amp;lt; b  || blt  || bltal  || brlt  || slt&lt;br /&gt;
|-&lt;br /&gt;
| -ltz || if a &amp;lt; 0  || bltz || bltzal || brltz || sltz&lt;br /&gt;
|-&lt;br /&gt;
| -ne  || if a != b || bne  || bneal  || brne  || sne&lt;br /&gt;
|-&lt;br /&gt;
| -nez || if a != 0 || bnez || bnezal || brnez || snez&lt;br /&gt;
|-&lt;br /&gt;
| -nan || if a == NaN || bnan ||  || brnan || snan&lt;br /&gt;
|-&lt;br /&gt;
| -nanz || if a != NaN ||  ||  || || snanz&lt;br /&gt;
|-&lt;br /&gt;
| -dns || if device d is not set          || bdns || bdnsal || brdns || sdns&lt;br /&gt;
|-&lt;br /&gt;
| -dse || if device d is set              || bdse || bdseal || brdse || sdse&lt;br /&gt;
|-&lt;br /&gt;
| -ap  || if a approximately equals b     || bap  || bapal  || brap  || sap&lt;br /&gt;
|-&lt;br /&gt;
| -apz || if a approximately equals 0     || bapz || bapzal || brapz || sapz&lt;br /&gt;
|-&lt;br /&gt;
| -na  || if a not approximately equals b || bna  || bnaal  || brna  || sna&lt;br /&gt;
|-&lt;br /&gt;
| -naz || if a not approximately equals 0 || bnaz || bnazal || brnaz || snaz&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
All &amp;lt;code&amp;gt;b-&amp;lt;/code&amp;gt; commands require target line as last argument, all &amp;lt;code&amp;gt;s-&amp;lt;/code&amp;gt; commands require register to store result as first argument. All &amp;lt;code&amp;gt;br-&amp;lt;/code&amp;gt; commands require number to jump relatively as last argument. e.g. &amp;lt;code&amp;gt;breq a b 3&amp;lt;/code&amp;gt; means if a=b then jump to 3 lines after.&lt;br /&gt;
&lt;br /&gt;
All approximate functions require additional argument denoting how close two numbers need to be considered equal. E.g.: &amp;lt;code&amp;gt;sap r0 100 101 0.01&amp;lt;/code&amp;gt; will consider 100 and 101 almost equal (not more than 1%=0.01 different) and will set r0 to 1. The exact formula is &amp;lt;code&amp;gt;if abs(a - b) &amp;lt;= max(c * max(abs(a), abs(b)), float.epsilon * 8)&amp;lt;/code&amp;gt; for &amp;lt;code&amp;gt;-ap&amp;lt;/code&amp;gt; and is similar for other approximate functions.&lt;br /&gt;
&lt;br /&gt;
https://en.wikipedia.org/wiki/Machine_epsilon&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
  FLT_EPSILON = 2^(−23) ≈ 1.19e−07;        &amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;float (32 bit)&amp;lt;/span&amp;gt;&lt;br /&gt;
  DBL_EPSILON = 2^(−52) ≈ 2.20e−16;        &amp;lt;span style=&amp;quot;color:#4c9700;&amp;quot;&amp;gt;double (64 bit)&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
  &amp;lt;code&amp;gt;if abs(100 - 101) &amp;lt;= max(0.01 * max(abs(100), abs(101)), float.epsilon * 8)&amp;lt;/code&amp;gt;&lt;br /&gt;
  &amp;lt;code&amp;gt;if abs(-1) &amp;lt;= max(0.01 * 101, float.epsilon * 8)&amp;lt;/code&amp;gt;&lt;br /&gt;
  &amp;lt;code&amp;gt;if 1 &amp;lt;= max(0.01 * 101, float.epsilon * 8)&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
  &amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;if 1 &amp;lt;= max(1.01, FLT_EPSILON * 8)&amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;span style=&amp;quot;color:#4c9700;&amp;quot;&amp;gt;if 1 &amp;lt;= max(1.01, DBL_EPSILON * 8)&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
  &amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;if 1 &amp;lt;= max(1.01, 1.19e−07 * 8)&amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;span style=&amp;quot;color:#4c9700;&amp;quot;&amp;gt;if 1 &amp;lt;= max(1.01, 2.20e−16 * 8)&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
  &amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;if 1 &amp;lt;= max(1.01, 0.000000952)&amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;span style=&amp;quot;color:#4c9700;&amp;quot;&amp;gt;if 1 &amp;lt;= max(1.01, 0.00000000000000176)&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
  &amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;if 1 &amp;lt;= 1.01   TRUE   1&amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;span style=&amp;quot;color:#4c9700;&amp;quot;&amp;gt;if 1 &amp;lt;= 1.01   TRUE   1&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Device Variables==&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Activate&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Activate&lt;br /&gt;
:1 if device is activated (usually means running), otherwise 0&lt;br /&gt;
:&amp;lt;code&amp;gt;l r0 d0 Activate # sets r0 to 1 if on or 0 if off&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;AirRelease&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;AirRelease&lt;br /&gt;
&amp;lt;div id=&amp;quot;Charge&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Charge&lt;br /&gt;
:    The current charge the device has.&lt;br /&gt;
&amp;lt;div id=&amp;quot;CLearMemory&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ClearMemory&lt;br /&gt;
:    When set to 1, clears the counter memory (e.g. ExportCount).  Will set itself back to 0 when triggered.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Color&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Color&lt;br /&gt;
:    &amp;lt;div style=&amp;quot;display: inline-block; vertical-align: top; height: 20px; width: 20px; border: 1px solid black; margin-right: 5px; background-color:#212AA5;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;amp;nbsp;0 (or lower) = Blue&lt;br /&gt;
:    &amp;lt;div style=&amp;quot;display: inline-block; vertical-align: top; height: 20px; width: 20px; border: 1px solid black; margin-right: 5px; background-color:#7B7B7B;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;amp;nbsp;1 = Grey &lt;br /&gt;
:    &amp;lt;div style=&amp;quot;display: inline-block; vertical-align: top; height: 20px; width: 20px; border: 1px solid black; margin-right: 5px; background-color:#3F9B39;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;amp;nbsp;2 = Green &lt;br /&gt;
:    &amp;lt;div style=&amp;quot;display: inline-block; vertical-align: top; height: 20px; width: 20px; border: 1px solid black; margin-right: 5px; background-color:#FF662B;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;amp;nbsp;3 = Orange &lt;br /&gt;
:    &amp;lt;div style=&amp;quot;display: inline-block; vertical-align: top; height: 20px; width: 20px; border: 1px solid black; margin-right: 5px; background-color:#E70200;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;amp;nbsp;4 = Red &lt;br /&gt;
:    &amp;lt;div style=&amp;quot;display: inline-block; vertical-align: top; height: 20px; width: 20px; border: 1px solid black; margin-right: 5px; background-color:#FFBC1B;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;amp;nbsp;5 = Yellow &lt;br /&gt;
:    &amp;lt;div style=&amp;quot;display: inline-block; vertical-align: top; height: 20px; width: 20px; border: 1px solid black; margin-right: 5px; background-color:#E7E7E7;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;amp;nbsp;6 = White &lt;br /&gt;
:    &amp;lt;div style=&amp;quot;display: inline-block; vertical-align: top; height: 20px; width: 20px; border: 1px solid black; margin-right: 5px; background-color:#080908;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;amp;nbsp;7 = Black &lt;br /&gt;
:    &amp;lt;div style=&amp;quot;display: inline-block; vertical-align: top; height: 20px; width: 20px; border: 1px solid black; margin-right: 5px; background-color:#633C2B;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;amp;nbsp;8 = Brown &lt;br /&gt;
:    &amp;lt;div style=&amp;quot;display: inline-block; vertical-align: top; height: 20px; width: 20px; border: 1px solid black; margin-right: 5px; background-color:#63633F;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;amp;nbsp;9 = Khaki &lt;br /&gt;
:    &amp;lt;div style=&amp;quot;display: inline-block; vertical-align: top; height: 20px; width: 20px; border: 1px solid black; margin-right: 5px; background-color:#E41C99;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;amp;nbsp;10 = Pink &lt;br /&gt;
:    &amp;lt;div style=&amp;quot;display: inline-block; vertical-align: top; height: 20px; width: 20px; border: 1px solid black; margin-right: 5px; background-color:#732CA7;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;amp;nbsp;11 (or higher) = Purple &lt;br /&gt;
&amp;lt;div id=&amp;quot;CompletionRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;CompletionRatio&lt;br /&gt;
&amp;lt;div id=&amp;quot;ElevatorLevel&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ElevatorLevel&lt;br /&gt;
&amp;lt;div id=&amp;quot;ElevatorSpeed&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ElevatorSpeed&lt;br /&gt;
&amp;lt;div id=&amp;quot;Error&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Error&lt;br /&gt;
:	1 if device is in error state, otherwise 0&lt;br /&gt;
&amp;lt;div id=&amp;quot;ExportCount&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ExportCount&lt;br /&gt;
:    How many items exporfted since last ClearMemory.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Filtration&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Filtration&lt;br /&gt;
:	The current state of the filtration system.  For example filtration = 1 for a Hardsuit when filtration is On.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Harvest&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Harvest&lt;br /&gt;
:	Performs the harvesting action for any plant based machinery.&lt;br /&gt;
:  &amp;lt;code&amp;gt;s d0 Harvest 1 # Performs 1 harvest action on device d0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;Horizontal&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Horizontal&lt;br /&gt;
&amp;lt;div id=&amp;quot;HorizontalRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;HorizontalRatio&lt;br /&gt;
&amp;lt;div id=&amp;quot;Idle&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Idle&lt;br /&gt;
&amp;lt;div id=&amp;quot;ImportCount&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ImportCount&lt;br /&gt;
&amp;lt;div id=&amp;quot;Lock&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Lock&lt;br /&gt;
&amp;lt;div id=&amp;quot;Maximum&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Maximum&lt;br /&gt;
&amp;lt;div id=&amp;quot;Mode&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Mode&lt;br /&gt;
&amp;lt;div id=&amp;quot;On&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;On&lt;br /&gt;
&amp;lt;div id=&amp;quot;Open&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Open&lt;br /&gt;
&amp;lt;div id=&amp;quot;Output&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Output&lt;br /&gt;
&amp;lt;div id=&amp;quot;Plant&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Plant&lt;br /&gt;
:    Performs the planting operation for any plant based machinery.&lt;br /&gt;
:  &amp;lt;code&amp;gt;s d0 Plant 1 # Plants one crop in device d0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;PositionX&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PositionX&lt;br /&gt;
&amp;lt;div id=&amp;quot;PositionY&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PositionY&lt;br /&gt;
&amp;lt;div id=&amp;quot;PositionZ&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PositionZ&lt;br /&gt;
&amp;lt;div id=&amp;quot;Power&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Power&lt;br /&gt;
&amp;lt;div id=&amp;quot;PowerActual&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PowerActual&lt;br /&gt;
&amp;lt;div id=&amp;quot;PowerPotential&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PowerPotential&lt;br /&gt;
&amp;lt;div id=&amp;quot;PowerRequired&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PowerRequired&lt;br /&gt;
&amp;lt;div id=&amp;quot;Pressure&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Pressure&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureExternal&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureExternal&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureInteral&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureInteral&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureSetting&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureSetting&lt;br /&gt;
&amp;lt;div id=&amp;quot;Quantity&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Quantity&lt;br /&gt;
:	Total quantity in the device.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Ratio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Ratio&lt;br /&gt;
:	Context specific value depending on device, 0 to 1 based ratio.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioCarbonDioxide&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioCarbonDioxide&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioNitrogen&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioNitrogen&lt;br /&gt;
:	The ratio of nitrogen in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioOxygen&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioOxygen&lt;br /&gt;
:	The ratio of oxygen in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioPollutant&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioPollutant&lt;br /&gt;
:	The ratio of pollutant in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioVolatiles&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioVolatiles&lt;br /&gt;
:	The ratio of volatiles in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioWater&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioWater&lt;br /&gt;
:	The ratio of water in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Reagents&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Reagents&lt;br /&gt;
&amp;lt;div id=&amp;quot;RecipeHash&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RecipeHash&lt;br /&gt;
&amp;lt;div id=&amp;quot;RequestHash&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ReferenceId&lt;br /&gt;
:    Unique Identifier of a Device, this value is different for every device in a save.&lt;br /&gt;
&amp;lt;div id=&amp;quot;ReferenceId&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RequestHash&lt;br /&gt;
&amp;lt;div id=&amp;quot;RequiredPower&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RequiredPower&lt;br /&gt;
&amp;lt;div id=&amp;quot;Setting&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Setting&lt;br /&gt;
&amp;lt;div id=&amp;quot;SolarAngle&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;SolarAngle&lt;br /&gt;
:    Solar angle of the device.&lt;br /&gt;
:  &amp;lt;code&amp;gt;l r0 d0 SolarAngle # Sets r0 to the solar angle of d0.&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;Temperature&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Temperature&lt;br /&gt;
&amp;lt;div id=&amp;quot;TemperatureSettings&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;TemperatureSettings&lt;br /&gt;
&amp;lt;div id=&amp;quot;TotalMoles&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;TotalMoles&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityMagnitude&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityMagnitude&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityRelativeX&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityRelativeX&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityRelativeY&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityRelativeY&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityRelativeZ&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityRelativeZ&lt;br /&gt;
&amp;lt;div id=&amp;quot;Vertical&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Vertical&lt;br /&gt;
:	Vertical setting of the device.&lt;br /&gt;
&amp;lt;div id=&amp;quot;VerticalRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VerticalRatio&lt;br /&gt;
:	Ratio of vertical setting for device.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Volume&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Volume&lt;br /&gt;
:	Returns the device atmosphere volume&lt;br /&gt;
&lt;br /&gt;
==Slot Variables==&lt;br /&gt;
In general (exceptions exist such as filtration units) slots are assigned as follows.&lt;br /&gt;
:Slot 0: Import&lt;br /&gt;
:Slot 1: Export&lt;br /&gt;
:Slot 2: Inside Machine&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Occupied&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Occupied&lt;br /&gt;
:&amp;lt;code&amp;gt;ls r0 d0 2 Occupied #Stores 1 in r0 if d0 has more seeds&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;ls vOccupied dThisVictim 2 Occupied #stores 1 in vOccupied if dThisVictim has more seeds&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;OccupantHash&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;OccupantHash&lt;br /&gt;
&amp;lt;div id=&amp;quot;Quantity&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Quantity&lt;br /&gt;
&amp;lt;div id=&amp;quot;Damage&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Damage&lt;br /&gt;
&amp;lt;div id=&amp;quot;Efficiency&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Efficiency&lt;br /&gt;
&amp;lt;div id=&amp;quot;Health&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Health&lt;br /&gt;
&amp;lt;div id=&amp;quot;Growth&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Growth&lt;br /&gt;
:&amp;lt;code&amp;gt;ls r0 d0 0 Growth # Store the numerical growth stage of d0 in r0&amp;lt;/code&amp;gt; &lt;br /&gt;
&amp;lt;div id=&amp;quot;Pressure&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Pressure&lt;br /&gt;
&amp;lt;div id=&amp;quot;Temperature&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Temperature&lt;br /&gt;
&amp;lt;div id=&amp;quot;Charge&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Charge&lt;br /&gt;
&amp;lt;div id=&amp;quot;ChargeRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ChargeRatio&lt;br /&gt;
&amp;lt;div id=&amp;quot;Class&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Class&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureWaste&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureWaste&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureAir&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureAir&lt;br /&gt;
&amp;lt;div id=&amp;quot;MaxQuantity&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;MaxQuantity&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Mature&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Mature&lt;br /&gt;
:&amp;lt;code&amp;gt;ls r0 d0 0 Mature # Store 1 in r0 if d0 has a mature crop&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;ls vMature dThisVictim 0 Mature # Store 1 in vMature if dThisVictim has a mature crop&amp;lt;/code&amp;gt;&lt;br /&gt;
;ReferenceId&lt;br /&gt;
:    Unique Identifier of a Device, this value is different for every device in a save.&lt;br /&gt;
&amp;lt;div id=&amp;quot;ReferenceId&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=Examples=&lt;br /&gt;
Previous examples were obsolete due to game changes, or confusing, they have been moved into the Discussions section&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Harvie automation===&lt;br /&gt;
This script uses the batch instruction &amp;lt;code&amp;gt;sb ...&amp;lt;/code&amp;gt; to control all Harvie devices on the network. But only one Harvie and one Tray will be the &#039;&#039;master&#039;&#039; and have their values read, the rest of the Harvies will repeat exactly what this unit does. Some problems with this design is that different types of crops mature at different speeds, and if seeds were manually planted and the master unit recieved the first seed, the harvesting action will be performed too early on all the other plants since they are growing a few seconds slower.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot; data-expandtext=&amp;quot;{{int:Expand, Automated Harvie Script}}&amp;quot; data-collapsetext=&amp;quot;{{int:Collapse, Automated Harvie Script}}&amp;quot;&amp;gt;&lt;br /&gt;
{{ICCode|&lt;br /&gt;
alias dHarvie d0&lt;br /&gt;
alias dTray d1&lt;br /&gt;
&lt;br /&gt;
alias rHarvieHash r8&lt;br /&gt;
alias rTrayHash r9&lt;br /&gt;
l rHarvieHash dHarvie PrefabHash&lt;br /&gt;
l rTrayHash dTray PrefabHash&lt;br /&gt;
&lt;br /&gt;
main:&lt;br /&gt;
yield&lt;br /&gt;
#read plant data from the Tray&lt;br /&gt;
ls r0 dTray 0 Mature&lt;br /&gt;
#harvestable plants return 1, young plants return 0&lt;br /&gt;
#nothing planted returns -1&lt;br /&gt;
beq r0 -1 plantCrop&lt;br /&gt;
beq r0 1 harvestCrop&lt;br /&gt;
ls r0 dTray 0 Seeding&lt;br /&gt;
#seeds available returns 1, all seeds picked returns 0&lt;br /&gt;
#plants too young or old for seeds returns -1&lt;br /&gt;
beq r0 1 harvestCrop&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
plantCrop:&lt;br /&gt;
#stop the planting if no seeds available&lt;br /&gt;
#otherwise it will plant nothing repeatedly&lt;br /&gt;
ls r0 dHarvie 0 Occupied&lt;br /&gt;
beq r0 0 main&lt;br /&gt;
sb rHarvieHash Plant 1&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
harvestCrop:&lt;br /&gt;
sb rHarvieHash Harvest 1&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
### End Script ###&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
===Solar Panel 2-axis tracking===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot; data-expandtext=&amp;quot;{{int:Expand, Solar Panel 2-axis tracking}}&amp;quot; data-collapsetext=&amp;quot;{{int:Collapse, Solar Panel 2-axis tracking}}&amp;quot;&amp;gt;&lt;br /&gt;
{{ICCode|&lt;br /&gt;
#2 Axis Solar Tracking adapted from CowsAreEvil.&lt;br /&gt;
#Place all panels in uniform manner.&lt;br /&gt;
#Set one to 15 Vertical(Min value). 0 Horizontal.&lt;br /&gt;
#Take note direction panel faces.&lt;br /&gt;
#Place daylight sensor flat pointing in the direction&lt;br /&gt;
#the panel now faces. (Cable port facing opposite)&lt;br /&gt;
&lt;br /&gt;
#Alias the sensor to d0&lt;br /&gt;
alias sensor d0&lt;br /&gt;
&lt;br /&gt;
# define the Panel variants&lt;br /&gt;
define Heavy -934345724&lt;br /&gt;
define HeavyDual -1545574413&lt;br /&gt;
define Solar -2045627372&lt;br /&gt;
define SolarDual -539224550&lt;br /&gt;
&lt;br /&gt;
start:&lt;br /&gt;
yield&lt;br /&gt;
#Check for daylight.&lt;br /&gt;
l r0 sensor Activate&lt;br /&gt;
beqz r0 reset&lt;br /&gt;
#Read the Horizontal data.&lt;br /&gt;
l r0 sensor Horizontal&lt;br /&gt;
#Set batch to the panels.&lt;br /&gt;
sb Heavy Horizontal r0&lt;br /&gt;
sb HeavyDual Horizontal r0&lt;br /&gt;
sb Solar Horizontal r0&lt;br /&gt;
sb SolarDual Horizontal r0&lt;br /&gt;
#Read the Vertical data and subtract 90&lt;br /&gt;
l r0 sensor Vertical&lt;br /&gt;
sub r0 90 r0&lt;br /&gt;
#Set batch to the panels.&lt;br /&gt;
sb Heavy Vertical r0&lt;br /&gt;
sb HeavyDual Vertical r0&lt;br /&gt;
sb Solar Vertical r0&lt;br /&gt;
sb SolarDual Vertical r0&lt;br /&gt;
j start&lt;br /&gt;
&lt;br /&gt;
reset:&lt;br /&gt;
yield&lt;br /&gt;
sb Heavy Horizontal 270 #Edit this to face sunrise.&lt;br /&gt;
sb HeavyDual Horizontal 270 #Edit this&lt;br /&gt;
sb Solar Horizontal 270 #Edit this&lt;br /&gt;
sb SolarDual Horizontal 270 #Edit this&lt;br /&gt;
sb Heavy Vertical 0&lt;br /&gt;
sb HeavyDual Vertical 0&lt;br /&gt;
sb Solar Vertical 0&lt;br /&gt;
sb SolarDual Vertical 0&lt;br /&gt;
sleep 10&lt;br /&gt;
j start&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
===Example experiment: how many lines of code are executed each tick?===&lt;br /&gt;
To determine this, a script without &amp;lt;code&amp;gt;yield&amp;lt;/code&amp;gt; will be used. It should have as few lines as possible (so no labels are used, but a reset value at the top will be needed) and count the number of lines, the IC Housing will be used to display the result.&lt;br /&gt;
{{ICCode|&lt;br /&gt;
move r0 1   #the first line has number 0&lt;br /&gt;
add r0 r0 3&lt;br /&gt;
s db Setting r0&lt;br /&gt;
j 1&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Result (the numbers appears every 0.5 seconds):&lt;br /&gt;
&amp;lt;br&amp;gt;127&lt;br /&gt;
&amp;lt;br&amp;gt;256 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;385 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;511 (+126)&lt;br /&gt;
&amp;lt;br&amp;gt;640 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;769 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;895 (+126)&lt;br /&gt;
&amp;lt;br&amp;gt;1024 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;1153 (+129)&lt;br /&gt;
&lt;br /&gt;
There is a repeating +129, +129, +126 sequence, a hint that the real value is 128. Which also happens to be the number of lines in a script, which makes sense. A variation of this experiment will show that empty rows are also counted towards this number.&lt;br /&gt;
&lt;br /&gt;
===Push &amp;amp; Pop return address when calling multiple levels of functions===&lt;br /&gt;
More advanced scripts, or scripts that wish to be more generic, may want to allow calling more than one level of function. Allowing this requires pushing the current &amp;lt;code&amp;gt;ra&amp;lt;/code&amp;gt; register before calling the function, then popping &amp;lt;code&amp;gt;ra&amp;lt;/code&amp;gt; back afterward.&lt;br /&gt;
&lt;br /&gt;
For example, imagine that the main loop of the code wants to call function &amp;lt;code&amp;gt;orientPanelsToStar&amp;lt;/code&amp;gt;, which would calculate the panels&#039; orientations, then place them in &amp;lt;code&amp;gt;r0&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;r1&amp;lt;/code&amp;gt;, and then in turn itself call &amp;lt;code&amp;gt;orientPanelsTo&amp;lt;/code&amp;gt;, which would set the orientations of all panels based on the precomputed values of &amp;lt;code&amp;gt;r0&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;r1&amp;lt;/code&amp;gt;. Doing so requires &amp;lt;code&amp;gt;orientPanelsToStar&amp;lt;/code&amp;gt; to push &amp;lt;code&amp;gt;ra&amp;lt;/code&amp;gt; before calling &amp;lt;code&amp;gt;orientPanelsTo&amp;lt;/code&amp;gt;, as show in the code below.&lt;br /&gt;
&lt;br /&gt;
{{ICCode|&lt;br /&gt;
orientPanelsToStar:&lt;br /&gt;
# Save return address set by the &#039;jal&#039; instruction&lt;br /&gt;
push ra&lt;br /&gt;
&lt;br /&gt;
# ...Calculate panels&#039; orientation, for example leaving the results in r0 and r1...&lt;br /&gt;
&lt;br /&gt;
# Now call orientPanelsTo to actually set the panels&#039; orientation&lt;br /&gt;
# based on the computed values of r0 and r1.&lt;br /&gt;
jal orientPanelsTo&lt;br /&gt;
&lt;br /&gt;
# ...Call other functions here if desired...&lt;br /&gt;
&lt;br /&gt;
# Restore the return address of orientPanelsToStar itself&lt;br /&gt;
pop ra&lt;br /&gt;
# Return to caller&lt;br /&gt;
j ra&lt;br /&gt;
&lt;br /&gt;
##########&lt;br /&gt;
&lt;br /&gt;
orientPanelsTo:&lt;br /&gt;
# ...Actually set panels&#039; orientation...&lt;br /&gt;
&lt;br /&gt;
# Return to caller&lt;br /&gt;
j ra&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
This code would behave incorrectly if &amp;lt;code&amp;gt;push ra&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;pop ra&amp;lt;/code&amp;gt; were not present: within &amp;lt;code&amp;gt;orientPanelsToStar&amp;lt;/code&amp;gt;, doing &amp;lt;code&amp;gt;jal orientPanelsTo&amp;lt;/code&amp;gt; would replace the current value of the &amp;lt;code&amp;gt;ra&amp;lt;/code&amp;gt; register, permanently erasing where &amp;lt;code&amp;gt;orientPanelsToStar&amp;lt;/code&amp;gt; itself should jump back to once done. Pushing and popping &amp;lt;code&amp;gt;ra&amp;lt;/code&amp;gt; effectively saves its value until we need it again.&lt;br /&gt;
&lt;br /&gt;
(A tempting but wrong approach to &#039;saving&#039; &amp;lt;code&amp;gt;ra&amp;lt;/code&amp;gt; would be to &amp;lt;code&amp;gt;move&amp;lt;/code&amp;gt; it within a different register (e.g. &amp;lt;code&amp;gt;r15&amp;lt;/code&amp;gt;) before calling &amp;lt;code&amp;gt;orientPanelsTo&amp;lt;/code&amp;gt;, however that only permits two levels of functions, since if &amp;lt;code&amp;gt;orientPanelsTo&amp;lt;/code&amp;gt; itself wants to call another function, it would not be able to use &amp;lt;code&amp;gt;r15&amp;lt;/code&amp;gt; to save its &amp;lt;code&amp;gt;ra&amp;lt;/code&amp;gt; register since &amp;lt;code&amp;gt;r15&amp;lt;/code&amp;gt; already saves &amp;lt;code&amp;gt;orientPanelsToStar&amp;lt;/code&amp;gt;&#039;s return address. Just pushing/popping &amp;lt;code&amp;gt;ra&amp;lt;/code&amp;gt; fixes all issues, allowing for a ginormous maximum function call depth of 512!)&lt;br /&gt;
&lt;br /&gt;
As a last note, if the script will push/pop values like &amp;lt;code&amp;gt;ra&amp;lt;/code&amp;gt;, starting the script by clearing the stack (which where push/pop move the data to) by running &amp;lt;code&amp;gt;clr db&amp;lt;/code&amp;gt; is advisable, unless the IC10 chip is not inserted inside an IC Housing (e.g. inserted in the slot of an Air Conditioner), since &amp;lt;code&amp;gt;clr db&amp;lt;/code&amp;gt; will cause an error in this case. To do so, run &amp;lt;code&amp;gt;clr db&amp;lt;/code&amp;gt; before the script&#039;s main loop.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Links=&lt;br /&gt;
----&lt;br /&gt;
* Stationeers online IC10 Emulators so you can develop your code without repeatedly dying in game&lt;br /&gt;
** [https://ic10.dev/] Stationeers Code Simulator&lt;br /&gt;
** [https://ic10emu.dev] Stationeers IC10 Editor &amp;amp; Emulator - A feature packed code editor for Stationeers IC10 code, paired with a robust debugger and emulator. Edit, test, and share code.&lt;br /&gt;
** [https://stationeering.com/tools/ic] Stationeering provides a simulation of the IC10 chip inside Stationeers. IDE with error checking, full visibility of stack and registers.&lt;br /&gt;
* [http://www.easy68k.com/] EASy68K is a 68000 Structured Assembly Language IDE.&lt;br /&gt;
* [https://marketplace.visualstudio.com/items?itemName=Traineratwot.stationeers-ic10] syntax highlighting for IC10 MIPS for Visual Studio Code (updated Feb 10th 2022)&lt;br /&gt;
* [https://pastebin.com/6Uw1KSRN] syntax highlighting for IC10 MIPS for KDE kwrite/kate text editor&lt;br /&gt;
* [https://drive.google.com/file/d/1yEsJ-u94OkuMQ8K6fY7Ja1HNpLcAdjo_/view] syntax highlighting for IC10 MIPS for Notepad++&lt;br /&gt;
* [https://drive.google.com/file/d/1Xrv5U0ZI5jDcPv7yX7EAAxaGk5hKP0xO/view?usp=sharing] syntax highlighting for IC10 MIPS for Notepad++ (updated: 11/08/2022)&lt;br /&gt;
* [https://pastebin.com/3kmGy0NN] syntax highlighting for IC10 MIPS for Notepad++ (updated: 23/03/2024)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=Index=&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|+Functions &lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
*[[#abs|abs]]&lt;br /&gt;
*[[#add|add]]&lt;br /&gt;
*[[#alias|alias]]&lt;br /&gt;
*[[#and|and]]&lt;br /&gt;
*[[#beq|beq]]&lt;br /&gt;
*[[#bgez|bgez]]&lt;br /&gt;
*[[#bgtz|bgtz]]&lt;br /&gt;
*[[#blez|blez]]&lt;br /&gt;
*[[#bltz|bltz]]&lt;br /&gt;
*[[#bne|bne]]&lt;br /&gt;
*[[#breq|breq]]&lt;br /&gt;
*[[#brgez|brgez]]&lt;br /&gt;
*[[#brgtz|brgtz]]&lt;br /&gt;
*[[#brlez|brlez]]&lt;br /&gt;
*[[#brltz|brltz]]&lt;br /&gt;
*[[#brne|brne]]&lt;br /&gt;
*[[#ceil|cell]]&lt;br /&gt;
*[[#div|div]]&lt;br /&gt;
*[[#exp|exp]]&lt;br /&gt;
*[[#floor|floor]]&lt;br /&gt;
*[[#j|j]]&lt;br /&gt;
*[[#jr|jr]]&lt;br /&gt;
*[[#l|l]]&lt;br /&gt;
*[[#log|log]]&lt;br /&gt;
*[[#ls|ls]]&lt;br /&gt;
*[[#max|max]]&lt;br /&gt;
*[[#min|min]]&lt;br /&gt;
*[[#mod|mod]]&lt;br /&gt;
*[[#move|move]]&lt;br /&gt;
*[[#mul|mul]]&lt;br /&gt;
*[[#nor|nor]]&lt;br /&gt;
*[[#or|or]]&lt;br /&gt;
*[[#rand|rand]]&lt;br /&gt;
*[[#round|round]]&lt;br /&gt;
*[[#s|s]]&lt;br /&gt;
*[[#slt|slt]]&lt;br /&gt;
*[[#sqrt|sqrt]]&lt;br /&gt;
*[[#sub|sub]]&lt;br /&gt;
*[[#trunc|trunc]]&lt;br /&gt;
*[[#xor|xor]]xor&lt;br /&gt;
*[[#yield|yield]]&lt;br /&gt;
*[[##|#]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|+Device Variables &lt;br /&gt;
&amp;lt;div  class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
*[[#Activate|Activate]]&lt;br /&gt;
*[[#AirRelease|AirRelease]]&lt;br /&gt;
*[[#Charge|Charge]]&lt;br /&gt;
*[[#CLearMemory|CLearMemory]]&lt;br /&gt;
*[[#Color|Color]]&lt;br /&gt;
*[[#CompletionRatio|CompletionRatio]]&lt;br /&gt;
*[[#ElevatorLevel|ElevatorLevel]]&lt;br /&gt;
*[[#ElevatorSpeed|ElevatorSpeed]]&lt;br /&gt;
*[[#Error|Error]]&lt;br /&gt;
*[[#ExportCount|ExportCount]]&lt;br /&gt;
*[[#Filtration|Filtration]]&lt;br /&gt;
*[[#Harvest|Harvest]]&lt;br /&gt;
*[[#Horizontal|Horizontal]]&lt;br /&gt;
*[[#HorizontalRatio|HorizontalRatio]]&lt;br /&gt;
*[[#Idle|Idle]]&lt;br /&gt;
*[[#ImportCount|ImportCount]]&lt;br /&gt;
*[[#Lock|Lock]]&lt;br /&gt;
*[[#Maximum|Maximum]]&lt;br /&gt;
*[[#Mode|Mode]]&lt;br /&gt;
*[[#On|On]]&lt;br /&gt;
*[[#Open|Open]]&lt;br /&gt;
*[[#Output|Output]]&lt;br /&gt;
*[[#Plant|Plant]]&lt;br /&gt;
*[[#PositionX|PositionX]]&lt;br /&gt;
*[[#PositionY|PositionY]]&lt;br /&gt;
*[[#PositionZ|PositionZ]]&lt;br /&gt;
*[[#Power|Power]]&lt;br /&gt;
*[[#PowerActual|PowerActual]]&lt;br /&gt;
*[[#PowerPotential|PowerPotential]]&lt;br /&gt;
*[[#PowerRequired|PowerRequired]]&lt;br /&gt;
*[[#Pressure|Pressure]]&lt;br /&gt;
*[[#PressureExternal|PressureExternal]]&lt;br /&gt;
*[[#PressureInteral|PressureInteral]]&lt;br /&gt;
*[[#PressureSetting|PressureSetting]]&lt;br /&gt;
*[[#Quantity|Quantity]]&lt;br /&gt;
*[[#Ratio|Ratio]]&lt;br /&gt;
*[[#RatioCarbonDioxide|RatioCarbonDioxide]]&lt;br /&gt;
*[[#RatioNitrogen|RatioNitrogen]]&lt;br /&gt;
*[[#RatioOxygen|RatioOxygen]]&lt;br /&gt;
*[[#RatioPollutant|RatioPollutant]]&lt;br /&gt;
*[[#RatioVolatiles|RatioVolatiles]]&lt;br /&gt;
*[[#RatioWater|RatioWater]]&lt;br /&gt;
*[[#Reagents|Reagents]]&lt;br /&gt;
*[[#RecipeHash|RecipeHash]]&lt;br /&gt;
*[[#RequestHash|RequestHash]]&lt;br /&gt;
*[[#RequiredPower|RequiredPower]]&lt;br /&gt;
*[[#Setting|Setting]]&lt;br /&gt;
*[[#SolarAngle|SolarAngle]]&lt;br /&gt;
*[[#Temperature|Temperature]]&lt;br /&gt;
*[[#TemperatureSettings|TemperatureSettings]]&lt;br /&gt;
*[[#TotalMoles|TotalMoles]]&lt;br /&gt;
*[[#VelocityMagnitude|VelocityMagnitude]]&lt;br /&gt;
*[[#VelocityRelativeX|VelocityRelativeX]]&lt;br /&gt;
*[[#VelocityRelativeY|VelocityRelativeY]]&lt;br /&gt;
*[[#VelocityRelativeZ|VelocityRelativeZ]]&lt;br /&gt;
*[[#Vertical|Vertical]]&lt;br /&gt;
*[[#VerticalRatio|VerticalRatio]]&lt;br /&gt;
*[[#Volume|Volume]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|+Slot Variables &lt;br /&gt;
&amp;lt;div  class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
*[[#Occupied|Occupied]]&lt;br /&gt;
*[[#OccupantHash|OccupantHash]]&lt;br /&gt;
*[[#Quantity|Quantity]]&lt;br /&gt;
*[[#Damage|Damage]]&lt;br /&gt;
*[[#Efficiency|Efficiency]]&lt;br /&gt;
*[[#Health|Health]]&lt;br /&gt;
*[[#Growth|Growth]]&lt;br /&gt;
*[[#Pressure|Pressure]]&lt;br /&gt;
*[[#Temperature|Temperature]]&lt;br /&gt;
*[[#Charge|Charge]]&lt;br /&gt;
*[[#ChargeRatio|ChargeRatio]]&lt;br /&gt;
*[[#Class|Class]]&lt;br /&gt;
*[[#PressureWaste|PressureWaste]]&lt;br /&gt;
*[[#PressureAir|PressureAir]]&lt;br /&gt;
*[[#MaxQuantity|MaxQuantity]]&lt;br /&gt;
*[[#Mature|Mature]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=IC10&amp;diff=22342</id>
		<title>IC10</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=IC10&amp;diff=22342"/>
		<updated>2024-12-20T19:28:56Z</updated>

		<summary type="html">&lt;p&gt;Wark: added &amp;quot;Dynamically changing LogicType when interacting with Device Registers&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:IC10 Programming]]&lt;br /&gt;
=Scripting language for IC10 housings / chips=&lt;br /&gt;
MIPS is [[Stationeers]]&#039; inspiration for the in-game scripting language called IC10. It runs on [[Integrated Circuit (IC10)|IC10 chips]] crafted at the [[Electronics Printer]]. &lt;br /&gt;
&lt;br /&gt;
==Registers==&lt;br /&gt;
Internal registers &#039;&#039;&#039;r?&#039;&#039;&#039;: The IC contains 16 CPU registers, numbered &#039;&#039;&#039;r0&#039;&#039;&#039; to &#039;&#039;&#039;r15&#039;&#039;&#039;. From now on referred to as &#039;&#039;&#039;r?&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Device registers &#039;&#039;&#039;d? logicType&#039;&#039;&#039;: Device registers are written to and from the IC. A device register is numbered &#039;&#039;&#039;d0&#039;&#039;&#039; to &#039;&#039;&#039;d5&#039;&#039;&#039; (select via screw), or &#039;&#039;&#039;db&#039;&#039;&#039; (connected device). From now on referred to as &#039;&#039;&#039;d?&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
=== Logic and algorithmic with &#039;&#039;&#039;Internal registers&#039;&#039;&#039; ===&lt;br /&gt;
All calculations are exclusively performed to and from &#039;&#039;&#039;r?&#039;&#039;&#039; registers, or generally more understood as variables in programming. You can use aliases to give convenient names with the &amp;lt;code&amp;gt;alias string r?|d?&amp;lt;/code&amp;gt;command (see below). &lt;br /&gt;
&lt;br /&gt;
Internal registers can be manipulated in various ways. &lt;br /&gt;
* Write constant values &amp;lt;code&amp;gt;move r? (r?|num)&amp;lt;/code&amp;gt;: Example: &amp;lt;code&amp;gt;move r0 2&amp;lt;/code&amp;gt; sets r0 to the number 2.&lt;br /&gt;
* Calculate: Calculations are done to- and from these registers, like &amp;lt;code&amp;gt;add r? a(r?|num) b(r?|num)&amp;lt;/code&amp;gt;. Example: &amp;lt;code&amp;gt;add r1 r0 3&amp;lt;/code&amp;gt; adds 3 to r0, and writes to r1.&lt;br /&gt;
&lt;br /&gt;
Note, for any kind of if statements or loop behaviours, knowing about labels, branching, and jumps is essential knowledge. See below.&lt;br /&gt;
&lt;br /&gt;
=== IO to &#039;&#039;&#039;Device registers&#039;&#039;&#039; ===&lt;br /&gt;
Acronym &#039;&#039;&#039;d?&#039;&#039;&#039; stands for device, where ? is a number corresponding to the screw device selector on the socket.&lt;br /&gt;
You can also read/write to the device where the IC is planted in using device &#039;&#039;&#039;db&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Generally, there are up to 6 devices which can be set using the screwdriver &#039;&#039;&#039;d0&#039;&#039;&#039; to &#039;&#039;&#039;d5&#039;&#039;&#039;. A special device register &#039;&#039;&#039;db&#039;&#039;&#039; is the device wherever the IC is mounted upon. Very convenient for atmospheric devices where no separate IC socket is required.&lt;br /&gt;
&lt;br /&gt;
Note, the IC is completely unaware where d? is actually connected to. So if you get a logicType error, check d? number, or check if the screw has been set on the socket. An alias is only convenient to convey what is expected to be set on the d? screw, it does not actually set or program the screq.&lt;br /&gt;
&lt;br /&gt;
* Read from device (load) &amp;lt;code&amp;gt;l r? d? logicType&amp;lt;/code&amp;gt;: Reads logicType, like Pressure from a [[Sensors|gas sensor]], from device d? to register r?. Values can be read from connected devices and put into the register using the &#039;&#039;&#039;l&#039;&#039;&#039; (load) command. For example, if you want to load the state of a door. &amp;lt;br&amp;gt; Example: &amp;lt;code&amp;gt;l r0 Door Open&amp;lt;/code&amp;gt; reads the &#039;Open&#039; field of an object named &#039;Door&#039;, that would be connected to the IC housing of the chip.&lt;br /&gt;
* Write to a device (set) &amp;lt;code&amp;gt;s d? logicType r?&amp;lt;/code&amp;gt;: Write a value from a register back to a device using the command &amp;lt;code&amp;gt;s d? logicType r?&amp;lt;/code&amp;gt;. For example, if d0 is set to a door using the screwdriver, &amp;lt;code&amp;gt;s d0 Open 0&amp;lt;/code&amp;gt; sets the &#039;Open&#039; status of the d0 (a door) to 0, effectively closing the door.&lt;br /&gt;
&lt;br /&gt;
=== batch IO to - &#039;&#039;&#039;Device registers&#039;&#039;&#039; ===&lt;br /&gt;
&#039;&#039;&#039;Batch writing&#039;&#039;&#039; needs to be done to a specific &#039;&#039;&#039;deviceHash&#039;&#039;&#039; instead of d?. Is unique per device type, which you can find in the [[Stationpedia]] entries.&lt;br /&gt;
* &amp;lt;code&amp;gt;lb r? deviceHash logicType batchMode&amp;lt;/code&amp;gt; &lt;br /&gt;
* &amp;lt;code&amp;gt;sb deviceHash logicType r?&amp;lt;/code&amp;gt;&lt;br /&gt;
Additionally, using the following batch commands, a &#039;&#039;&#039;nameHash&#039;&#039;&#039; can be provided to only modify devices with a certain name.&lt;br /&gt;
* &amp;lt;code&amp;gt;lbn r? deviceHash nameHash logicType batchMode &amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;sbn deviceHash nameHash logicType r?&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;batchMode&#039;&#039;&#039; is a parameter equal to 0, 1, 2, or 3. These are also defined as the constants &#039;&#039;&#039;Average&#039;&#039;&#039;, &#039;&#039;&#039;Sum&#039;&#039;&#039;, &#039;&#039;&#039;Minimum&#039;&#039;&#039;, and &#039;&#039;&#039;Maximum&#039;&#039;&#039; respectively. The word or number can be used.&lt;br /&gt;
&lt;br /&gt;
Combining one of these functions with the &amp;lt;code&amp;gt;HASH()&amp;lt;/code&amp;gt; function can be advantageous:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;lbn r0 HASH(&amp;quot;StructureGasSensor&amp;quot;) HASH(&amp;quot;Sensor 1&amp;quot;) Temperature Average&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This code will load the average temperature of all gas sensors on the network named &amp;quot;Sensor 1&amp;quot; onto register &#039;&#039;&#039;r0&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If the batch read (lb/lbn) is done on a network without any matching devices the results will be as specified in the table:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ Batch read with no devices&lt;br /&gt;
|-&lt;br /&gt;
! Batch Mode !! Result&lt;br /&gt;
|-&lt;br /&gt;
| Average (0) || nan&lt;br /&gt;
|-&lt;br /&gt;
| Sum (1) || 0&lt;br /&gt;
|-&lt;br /&gt;
| Minimum (2) || inf&lt;br /&gt;
|-&lt;br /&gt;
| Maximum (3) || ninf&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Dynamically changing LogicType when interacting with Device Registers ===&lt;br /&gt;
When the &amp;lt;code&amp;gt;l&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;s&amp;lt;/code&amp;gt; instructions are used to read from or write to a Device Register, the LogicType is the variable that will be interacted with (example: in &amp;lt;code&amp;gt;l r0 myDevice Temperature&amp;lt;/code&amp;gt; the LogicType is the Temperature). In most scripts the LogicType will be hardcoded. But it&#039;s possible to change the LogicType dynamically by placing the &amp;lt;code&amp;gt;LogicType.xxx&amp;lt;/code&amp;gt; equivalent inside a register, and then using that register as the LogicType.&lt;br /&gt;
{{ICCode|&lt;br /&gt;
move r1 LogicType.Temperature&lt;br /&gt;
l r0 myDevice r1&lt;br /&gt;
# read the Temperature from myDevice and store it in r0&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;code&amp;gt;LogicType.xxx&amp;lt;/code&amp;gt; values can also be stored on and retrieved from the Stack.&lt;br /&gt;
&lt;br /&gt;
=== Examples ===&lt;br /&gt;
&lt;br /&gt;
Here are some examples demonstrating all three operations:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 10&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Sets register &#039;&#039;&#039;r0&#039;&#039;&#039; to the value 10&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 r1&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Copies the value of register &#039;&#039;&#039;r1&#039;&#039;&#039; to register &#039;&#039;&#039;r0&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r0 d0 Temperature&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Reads the Temperature parameter from device &#039;&#039;&#039;d0&#039;&#039;&#039; and places the value in register &#039;&#039;&#039;r0&#039;&#039;&#039;.&lt;br /&gt;
Note: not all devices have a Temperature parameter, check the in-game stationpedia.&lt;br /&gt;
&lt;br /&gt;
To set a device specific value (like &#039;&#039;&#039;On&#039;&#039;&#039;), you can write into this value.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s d0 On r0&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Writes the value from register &#039;&#039;&#039;r0&#039;&#039;&#039; out to &#039;&#039;&#039;On&#039;&#039;&#039; parameter of device &#039;&#039;&#039;d0&#039;&#039;&#039;. In this example the device will be turned On, if valve of register r0 equals 1, otherwise (register r0 equals 0) it will turned off. See section [[IC10#Device_Variables|Device Variables]].&lt;br /&gt;
&lt;br /&gt;
It&#039;s recommended to use labels (like: &#039;&#039;someVariable&#039;&#039;) instead of a direct reference to the register. See &#039;&#039;&#039;alias&#039;&#039;&#039; in section [[IC10#Instructions|Instructions]].&lt;br /&gt;
&lt;br /&gt;
=== Special registers ===&lt;br /&gt;
There are two more registers. One called &#039;&#039;&#039;ra&#039;&#039;&#039; (return address) and one called &#039;&#039;&#039;sp&#039;&#039;&#039; (stack pointer). The &#039;&#039;&#039;ra&#039;&#039;&#039; is used by certain jump and branching instructions (those ending with &#039;&#039;&#039;-al&#039;&#039;&#039;) to remember which line in the script it should return to. The &#039;&#039;&#039;sp&#039;&#039;&#039; tracks the next index within the stack (a memory that can store up to 512 values) to be pushed (written) to or popped (read) from. Neither &#039;&#039;&#039;ra&#039;&#039;&#039; or &#039;&#039;&#039;sp&#039;&#039;&#039; is protected, their values can be changed by instructions like any other register.&lt;br /&gt;
&lt;br /&gt;
==Stack Memory==&lt;br /&gt;
The Stack is a memory that can hold 512 different values.&lt;br /&gt;
;push r?: adds the value  &#039;&#039;&#039;r?&#039;&#039;&#039; and increments the &#039;&#039;&#039;sp&#039;&#039;&#039; by 1.&lt;br /&gt;
;pop r?: loads the value in the stack memory at index &amp;lt;code&amp;gt;sp-1&amp;lt;/code&amp;gt; into register &#039;&#039;&#039;r?&#039;&#039;&#039; and decrements the &#039;&#039;&#039;sp&#039;&#039;&#039; by 1.&lt;br /&gt;
;peek r?: loads the value in the stack memory at index &amp;lt;code&amp;gt;sp-1&amp;lt;/code&amp;gt; into register &#039;&#039;&#039;r?&#039;&#039;&#039;.&lt;br /&gt;
;get r? d? address(r?|num): loads the value in the stack memory at index &amp;lt;code&amp;gt;address&amp;lt;/code&amp;gt; on provided device into register &#039;&#039;&#039;r?&#039;&#039;&#039;.&lt;br /&gt;
;getd r? id(r?|num) address(r?|num): loads the value in the stack memory at index &amp;lt;code&amp;gt;address&amp;lt;/code&amp;gt; on provided device id into register &#039;&#039;&#039;r?&#039;&#039;&#039;.&lt;br /&gt;
;put d? address(r?|num) value(r?|num): adds the value to the stack memory off the provided device at index &amp;lt;code&amp;gt;address&amp;lt;/code&amp;gt;.&lt;br /&gt;
;putd id(r?|num) address(r?|num) value(r?|num) : adds the value to the stack memory off the provided device id at index &amp;lt;code&amp;gt;address&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
As mentioned previously, &#039;&#039;&#039;sp&#039;&#039;&#039; can be both written to and read from any time. When reading (&#039;&#039;&#039;peek&#039;&#039;&#039; or &#039;&#039;&#039;pop&#039;&#039;&#039;), &#039;&#039;&#039;sp&#039;&#039;&#039; must be between 1 and 512, inclusive. While writing (&#039;&#039;&#039;push&#039;&#039;&#039;), &#039;&#039;&#039;sp&#039;&#039;&#039; must be between 0 and 511, inclusive.&lt;br /&gt;
&lt;br /&gt;
Stack memory is persistent on logic chips. This means that if you have a logic chip and push values to the stack, the code that pushes those values can be removed and the stack will retain those values.&lt;br /&gt;
&lt;br /&gt;
Note that this does not carry over to any other logic chips which receive the program of the original; They will need to have their stack memories programmed individually.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Stack Traversing&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Traversing the stack can be done similarly to how an array would be traversed in some other languages:&lt;br /&gt;
{{ICCode|&lt;br /&gt;
#this will traverse indices {min value} through {max value}-1&lt;br /&gt;
move sp {min value}&lt;br /&gt;
loop:&lt;br /&gt;
add sp sp 1&lt;br /&gt;
peek r0&lt;br /&gt;
&lt;br /&gt;
#do something here with your stack values (loaded into r0)&lt;br /&gt;
&lt;br /&gt;
blt sp {max value} loop&lt;br /&gt;
&lt;br /&gt;
#continue on&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Alternatively, you can use the pop function&#039;s decrementing to make a more efficient loop:&lt;br /&gt;
{{ICCode|&lt;br /&gt;
move sp {max value}&lt;br /&gt;
add sp sp 1&lt;br /&gt;
loop:&lt;br /&gt;
pop r0&lt;br /&gt;
&lt;br /&gt;
#do something here with your stack values (loaded into r0)&lt;br /&gt;
&lt;br /&gt;
bgt sp {min value} loop&lt;br /&gt;
&lt;br /&gt;
#continue on&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Device Ports==&lt;br /&gt;
ICs can interact with up to 6 other devices via d0 - d5, as well as the device it&#039;s attached to via db. To change or set a device, use a screwdriver and adjust the device in the IC housing. You can read or set any of the device&#039;s properties, so it is possible to do things like read the pressure or oxygen content of a room on the same Device port. &lt;br /&gt;
&lt;br /&gt;
Additionally, is possible to set other IC housings as devices, allowing you to create programs that run across multiple ICs together. For example, an Gas Mixing IC could check the &#039;&#039;&#039; Setting&#039;&#039;&#039;  field of a Atmosphere Sensor IC and act based on the value of the sensor chip.&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;l&#039;&#039;&#039; (load) or &#039;&#039;&#039;s&#039;&#039;&#039; (set) instructions you have to read or set these values to your device. Examples:&lt;br /&gt;
{{ICCode|&lt;br /&gt;
#Reads the &#039;Temperature&#039; from an atmosphere sensor&lt;br /&gt;
# at device port &#039;d0&#039; into register &#039;r0&#039;.&lt;br /&gt;
l r0 d0 Temperature&lt;br /&gt;
}} &lt;br /&gt;
{{ICCode|&lt;br /&gt;
# Writes the value of the register &#039;r0&#039; to the&lt;br /&gt;
# device on port &#039;d1&#039; into the variable &#039;Setting&#039;.&lt;br /&gt;
s d1 Setting r0&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Labels==&lt;br /&gt;
Labels are used to make it easier to jump between lines in the script. The label will have a numerical value that is the same as its line number. Even though it&#039;s possible to use a labels value for calculations, doing so is a bad idea since any changes to the code can change the line numbers of the labels.&lt;br /&gt;
{{ICCode|&lt;br /&gt;
main: # define a jump mark with label &#039;main&#039;&lt;br /&gt;
j main # jumps back to &#039;main&#039;&lt;br /&gt;
}}&lt;br /&gt;
==Constants==&lt;br /&gt;
Instead of using a register to store a fixed value, a constant can be made. Using this name will refer to the assigned value. With the help of Constants you can save register places.&lt;br /&gt;
{{ICCode|&lt;br /&gt;
# defines a Constant with name &#039;pi&#039;&lt;br /&gt;
# and set its value to 3.14159&lt;br /&gt;
define pi 3.14159&lt;br /&gt;
}} &lt;br /&gt;
&lt;br /&gt;
You can use these constants like any other variables (see: alias in section [[IC10#Instructions|Instructions]]). Example:&lt;br /&gt;
{{ICCode|&lt;br /&gt;
# set the value of register &#039;r0&#039; to the value of constant named &#039;pi&#039;.&lt;br /&gt;
move r0 pi &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Numeric values==&lt;br /&gt;
Registers and constants are usually decimal values using double-precision floating point (confirmed?).&lt;br /&gt;
&lt;br /&gt;
Unlike real CPU architectures, integers are not supported as a distinct type, but double FP can represent integers up to about 54 bits before rounding causes problems (the exact number depending what bit patterns you happen to have).&lt;br /&gt;
&lt;br /&gt;
Numbers can be written in hexadecimal by preceding the value with a $ symbol. Values larger than 54 bits might get corrupted. Hex numbers are typically used for ReferenceId values.&lt;br /&gt;
&lt;br /&gt;
Examples: &lt;br /&gt;
{{ICCode|&lt;br /&gt;
move r0 12345&lt;br /&gt;
move r1 123.456&lt;br /&gt;
move r2 $E1B2&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Indirect referencing==&lt;br /&gt;
This is a way of accessing a register by using another register as a pointer. Adding an additional r in front of the register turns on this behaviour. The value stored in the register being used as the pointer must be between 0 to 15, this will then point to a register from r0 to r15, higher or lower values will cause an error.&lt;br /&gt;
{{ICCode|&lt;br /&gt;
move r0 5 # stores the value 5 in r0&lt;br /&gt;
move rr0 10 &lt;br /&gt;
# is now the same as &#039;move r5 10&#039; &lt;br /&gt;
# since r0 has the value 5, rr0 points at the register r5&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Additional r&#039;s can be added to do indirect referencing multiple times in a row.&lt;br /&gt;
{{ICCode|&lt;br /&gt;
move r1 2&lt;br /&gt;
move r2 3&lt;br /&gt;
move rrr1 4&lt;br /&gt;
# is now the same as &#039;move r3 4&#039;&lt;br /&gt;
# since r1 points at r2 which points at r3&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
This also works with devices&lt;br /&gt;
{{ICCode|&lt;br /&gt;
move r0 2 # stores the value 2 in r0&lt;br /&gt;
s dr0 On 1 &lt;br /&gt;
# is now the same as &#039;s d2 On 1&#039;&lt;br /&gt;
# r0 has the value 2 so dr0 points at d2&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Network Referencing / Channels==&lt;br /&gt;
&lt;br /&gt;
All cable networks have 8 Channels which can have data loaded from/stored to via a device and connection reference. Connections for each supported device are listed in the stationpedia. All &#039;connections&#039; a device can make are a connection (pipe, chute, cable), but only cable networks have channels.&lt;br /&gt;
&lt;br /&gt;
The 8 channels (Channel0 to Channel7) are however volatile, in that data is destroyed if any part of the cable network is changed, removed, or added to, and also whenever the world is exited. All these channels default to NaN. Strictly speaking, they default to what we would call &amp;quot;quiet NaN&amp;quot;, in that its not an error it simply means its not a number yet. Recommend you use these channels for reading and writing between networks, rather than as a data store. This effectively means an IC can read all the networks for all devices to connected to it, so not just their own local network, but any networks any device they can reference is connected to.&lt;br /&gt;
{{ICCode|&lt;br /&gt;
# d0 is device zero, and the :0 refers&lt;br /&gt;
# to that device&#039;s 0 connection&lt;br /&gt;
l r0 d0:0 Channel0}}&lt;br /&gt;
&lt;br /&gt;
For example: on an IC Housing, the 0 connection is the data port and 1 is power, so you could write out r0 to Channel0 of the power network of the Housing using &amp;lt;code&amp;gt;s db:1 Channel0 r0&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Comments==&lt;br /&gt;
Comments can be placed using a &#039;&#039;&#039;#&#039;&#039;&#039; symbol. All comments are ignored by the game when it reads commands. Below is an example of valid code with two comments.&lt;br /&gt;
{{ICCode|&lt;br /&gt;
alias MyAlias r0 # Text after the hash tag will be ignored to the end of the line.&lt;br /&gt;
# You can also write comments on their own lines, like this.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Debugging advices==&lt;br /&gt;
The value stored in a register or variable can easily be displayed by writing it to the Setting parameter of the IC housing. This has no side effects. To see the value, just stand close to the IC housing and look directly at the housing.&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;s db Setting r0&amp;lt;/code&amp;gt;. # sets/writes the value of register &#039;&#039;&#039;r0&#039;&#039;&#039; into the parameter &#039;&#039;&#039;Setting&#039;&#039;&#039; of the IC Housing(&#039;&#039;&#039;db&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
To check if a certain block of code is executed, use the above trick but with a random number that you choose, like the line number.&amp;lt;br&amp;gt; This example will display the number 137 on the IC housing.&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;s db Setting 137&amp;lt;/code&amp;gt;  # sets/writes the number 137 into the parameter &#039;&#039;&#039;Setting&#039;&#039;&#039; of the IC Housing(&#039;&#039;&#039;db&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
Always use unique names for labels. When a label is named after a IC10 keyword like &amp;quot;Temperature:&amp;quot; or &amp;quot;Setting:&amp;quot; the original meaning of the keyword is overwritten, so when an instruction tries to use it an error will occur.&lt;br /&gt;
&lt;br /&gt;
A [[Cartridge#Configuration|configuration cartridge]] installed in a [[Handheld_Tablet|tablet]]  can be used to see all available values and configuration parameter for all devices you focus on.&lt;br /&gt;
&lt;br /&gt;
==Learning IC10==&lt;br /&gt;
IC10 can be difficult to get started with. So here is a list of instructions that are useful for beginners. These can be used to write many different scripts.&lt;br /&gt;
&lt;br /&gt;
General:&lt;br /&gt;
* &amp;lt;code&amp;gt;alias&amp;lt;/code&amp;gt; make the script easier to read by assigning a name to a register or device, example: &amp;lt;code&amp;gt;alias rTemperature r15&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;label:&amp;lt;/code&amp;gt; where &amp;quot;label&amp;quot; can be replaced with almost any word, jump and branch instructions can use these in place of line numbers, example: &amp;lt;code&amp;gt;start:&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;yield&amp;lt;/code&amp;gt; pause for 1-tick and then resume, if not used the script will automatically pause for 1-tick after 128 lines&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Jumps:&lt;br /&gt;
*&amp;lt;code&amp;gt;j someLabelName&amp;lt;/code&amp;gt; jump to line with &#039;&#039;&#039;someLabelName&#039;&#039;&#039;&lt;br /&gt;
*&amp;lt;code&amp;gt;jal someLabelName&amp;lt;/code&amp;gt; stores the next line number into the register ra (return address) and then jump to &#039;&#039;&#039;someLabelName&#039;&#039;&#039;&lt;br /&gt;
*&amp;lt;code&amp;gt;j ra&amp;lt;/code&amp;gt; jump to register ra (return address)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Branching (jump-if):&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;beq a(r?|num) b(r?|num) c(r?|num)&amp;lt;/code&amp;gt; if &#039;&#039;&#039;a&#039;&#039;&#039; is equal to &#039;&#039;&#039;b&#039;&#039;&#039; goto &#039;&#039;&#039;c&#039;&#039;&#039;  (label or linenumber) &amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;bne a(r?|num) b(r?|num) c(r?|num)&amp;lt;/code&amp;gt; if  &#039;&#039;&#039;a&#039;&#039;&#039; not-equal &#039;&#039;&#039;b&#039;&#039;&#039; goto  &#039;&#039;&#039;c&#039;&#039;&#039; (label or linenumber) &amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;bgt a(r?|num) b(r?|num) c(r?|num)&amp;lt;/code&amp;gt; if  &#039;&#039;&#039;a&#039;&#039;&#039; greater than &#039;&#039;&#039;b&#039;&#039;&#039; goto   &#039;&#039;&#039;c&#039;&#039;&#039; (label or linenumber) &amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;blt a(r?|num) b(r?|num) c(r?|num)&amp;lt;/code&amp;gt; if  &#039;&#039;&#039;a&#039;&#039;&#039; less than &#039;&#039;&#039;b&#039;&#039;&#039; goto &#039;&#039;&#039;c&#039;&#039;&#039; (label or linenumber) &amp;lt;br&amp;gt;&lt;br /&gt;
The suffix -al can be added to each of these (example: beqal) to save the &#039;&#039;&#039;next&#039;&#039;&#039; line number into the &amp;quot;return address&amp;quot; register. this is called using &amp;lt;code&amp;gt;j ra&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Device interactions:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
l (load)&lt;br /&gt;
lb (load batch, requires one of the following: 0(Average) / 1(Sum) / 2(Minimum) / 3(Maximum))&lt;br /&gt;
ls (load slot)&lt;br /&gt;
s (store)&lt;br /&gt;
sb (store batch)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Logic and Math:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
seqz (common NOT-gate: turns 0 into 1, and all other values into 0)&lt;br /&gt;
move&lt;br /&gt;
add (addition)&lt;br /&gt;
sub (subtraction)&lt;br /&gt;
mul (multiplication)&lt;br /&gt;
div (division)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Common device variables:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
On (1 is on, 0 is off)&lt;br /&gt;
Open (1 is open, 0 is closed)&lt;br /&gt;
Setting (meaning varies between devices, example: a LED display(console) will show this value)&lt;br /&gt;
Activate (1 usually means running, example: a Daylight sensor is 1 when the sun shines on it)&lt;br /&gt;
Temperature (in Kelvin, Celsius - 273.15)&lt;br /&gt;
Pressure (in kPa)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Notes:&lt;br /&gt;
&amp;lt;br&amp;gt;-All instructions and variables can be seen in-game in the IC editor window by clicking the &amp;quot;f&amp;quot;, &amp;quot;x&amp;quot; and &amp;quot;s(x)&amp;quot; buttons on the top right.&lt;br /&gt;
&amp;lt;br&amp;gt;-The stationpedia is the best source to see which variables are available to each device.&lt;br /&gt;
&amp;lt;br&amp;gt;-Most scripts are loops, they end with a jump instruction that leads back up to the start. Otherwise they will just run once and then stop.&lt;br /&gt;
&lt;br /&gt;
Two practice scripts:&lt;br /&gt;
&amp;lt;br&amp;gt;Automatic Night Light: Load &amp;quot;Activate&amp;quot; from a Daylight sensor, flip the value with a NOT-gate, store the value to the &amp;quot;On&amp;quot; variable of one or more lights.&lt;br /&gt;
&amp;lt;br&amp;gt;Automatic Wall Cooler: Read &amp;quot;Temperature&amp;quot; from a Gas Sensor. Branch if the value is greater than X, turn on the cooler. Branch if the value is less than Y, turn off the cooler. (Wall coolers need a minimum of 12.5 kPa pressure in the connected pipe)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Accessing devices via batch or ReferenceId ==&lt;br /&gt;
&lt;br /&gt;
The IC housing has 6 pins you can use to configure the devices it&lt;br /&gt;
uses.  This provides flexibility to let the installer configure which&lt;br /&gt;
devices will be controlled by the IC.&lt;br /&gt;
&lt;br /&gt;
Alternatives for accessing devices include the batch load/store and&lt;br /&gt;
the ReferenceId load/store instructions.&lt;br /&gt;
&lt;br /&gt;
{{ICCode|&lt;br /&gt;
# get the average charge ratio across station batteries&lt;br /&gt;
lb r0 HASH(&amp;quot;StructureBattery&amp;quot;) Ratio Average&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{ICCode|&lt;br /&gt;
# get the ReferenceId for the sorter named &amp;quot;Sorter Corn&amp;quot;&lt;br /&gt;
lbn r1 HASH(&amp;quot;StructureLogicSorter&amp;quot;) HASH(&amp;quot;Sorter Corn&amp;quot;) ReferenceId Maximum&lt;br /&gt;
ble r1 ninf ra&lt;br /&gt;
#use the ReferenceId to set that sorter&#039;s mode.&lt;br /&gt;
sd r1 Mode 1&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Using the 6 configuration pins makes it easy to write reusable MIPS&lt;br /&gt;
scripts where the installer uses the pins to select the devices that&lt;br /&gt;
will be managed.&lt;br /&gt;
&lt;br /&gt;
Using batch-name instructions frees you from the hassle of adjusting&lt;br /&gt;
the pins, but requires you to name the devices via the [[Labeller]].  It&lt;br /&gt;
can also allow you to control more than 6 devices.&lt;br /&gt;
&lt;br /&gt;
=== Batch instructions ===&lt;br /&gt;
&lt;br /&gt;
The batch instructions can address multiple devices only via their &#039;&#039;&#039;PrefabHash&#039;&#039;&#039; generated from the prefab name using the `HASH(&amp;quot;Name&amp;quot;)` macro or copied directly from the [[Stationpedia]]. A prefab hash is always an integer. All devices that can be read with logic contain the logic value &#039;&#039;&#039;PrefabHash&#039;&#039;&#039; and &#039;&#039;&#039;NameHash&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
See [[#Slot.2FLogic_.2F_Batched|Batched instructions]] for a comprehensive list of all batch instructions.&lt;br /&gt;
&lt;br /&gt;
[[#sb|sb]], [[#sbn|sbn]], [[#sbs|sbs]], (no sbns)&amp;lt;br&amp;gt;&lt;br /&gt;
[[#lb|lb]], [[#lbs|lbs]], [[#lbn|lbn]], [[#lbns|lbns]]&lt;br /&gt;
&lt;br /&gt;
=== Direct reference instructions ===&lt;br /&gt;
&lt;br /&gt;
Direct reference instructions can address a specific device via its &#039;&#039;&#039;ReferenceId&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
[[#clrd|clrd]], [[#getd|getd]], [[#putd|putd]],&amp;lt;br&amp;gt;&lt;br /&gt;
[[#ld|ld]], [[#sd|sd]], (no slot access via reference ID)&lt;br /&gt;
&lt;br /&gt;
=Instructions=&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
See [[IC10/instructions]]&lt;br /&gt;
&lt;br /&gt;
{{:IC10/instructions}}&lt;br /&gt;
&lt;br /&gt;
[https://www.cs.tufts.edu/comp/140/lectures/Day_3/mips_summary.pdf Other examples]&lt;br /&gt;
&lt;br /&gt;
== Conditional functions cheatsheet ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! suffix !! description !! branch to line !! branch and store return address !! relative jump to line !! set register&lt;br /&gt;
|-&lt;br /&gt;
| prefix: ||  || b- || b-al || br- || s-&lt;br /&gt;
|-&lt;br /&gt;
|  || unconditional || j    || jal    || jr    || &lt;br /&gt;
|-&lt;br /&gt;
| -eq  || if a == b || beq  || beqal  || breq  || seq&lt;br /&gt;
|-&lt;br /&gt;
| -eqz || if a == 0 || beqz || beqzal || breqz || seqz&lt;br /&gt;
|-&lt;br /&gt;
| -ge  || if a &amp;gt;= b || bge  || bgeal  || brge  || sge&lt;br /&gt;
|-&lt;br /&gt;
| -gez || if a &amp;gt;= 0 || bgez || bgezal || brgez || sgez&lt;br /&gt;
|-&lt;br /&gt;
| -gt  || if a &amp;gt; b  || bgt  || bgtal  || brgt  || sgt&lt;br /&gt;
|-&lt;br /&gt;
| -gtz || if a &amp;gt; 0  || bgtz || bgtzal || brgtz || sgtz&lt;br /&gt;
|-&lt;br /&gt;
| -le  || if a &amp;lt;= b || ble  || bleal  || brle  || sle&lt;br /&gt;
|-&lt;br /&gt;
| -lez || if a &amp;lt;= 0 || blez || blezal || brlez || slez&lt;br /&gt;
|-&lt;br /&gt;
| -lt  || if a &amp;lt; b  || blt  || bltal  || brlt  || slt&lt;br /&gt;
|-&lt;br /&gt;
| -ltz || if a &amp;lt; 0  || bltz || bltzal || brltz || sltz&lt;br /&gt;
|-&lt;br /&gt;
| -ne  || if a != b || bne  || bneal  || brne  || sne&lt;br /&gt;
|-&lt;br /&gt;
| -nez || if a != 0 || bnez || bnezal || brnez || snez&lt;br /&gt;
|-&lt;br /&gt;
| -nan || if a == NaN || bnan ||  || brnan || snan&lt;br /&gt;
|-&lt;br /&gt;
| -nanz || if a != NaN ||  ||  || || snanz&lt;br /&gt;
|-&lt;br /&gt;
| -dns || if device d is not set          || bdns || bdnsal || brdns || sdns&lt;br /&gt;
|-&lt;br /&gt;
| -dse || if device d is set              || bdse || bdseal || brdse || sdse&lt;br /&gt;
|-&lt;br /&gt;
| -ap  || if a approximately equals b     || bap  || bapal  || brap  || sap&lt;br /&gt;
|-&lt;br /&gt;
| -apz || if a approximately equals 0     || bapz || bapzal || brapz || sapz&lt;br /&gt;
|-&lt;br /&gt;
| -na  || if a not approximately equals b || bna  || bnaal  || brna  || sna&lt;br /&gt;
|-&lt;br /&gt;
| -naz || if a not approximately equals 0 || bnaz || bnazal || brnaz || snaz&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
All &amp;lt;code&amp;gt;b-&amp;lt;/code&amp;gt; commands require target line as last argument, all &amp;lt;code&amp;gt;s-&amp;lt;/code&amp;gt; commands require register to store result as first argument. All &amp;lt;code&amp;gt;br-&amp;lt;/code&amp;gt; commands require number to jump relatively as last argument. e.g. &amp;lt;code&amp;gt;breq a b 3&amp;lt;/code&amp;gt; means if a=b then jump to 3 lines after.&lt;br /&gt;
&lt;br /&gt;
All approximate functions require additional argument denoting how close two numbers need to be considered equal. E.g.: &amp;lt;code&amp;gt;sap r0 100 101 0.01&amp;lt;/code&amp;gt; will consider 100 and 101 almost equal (not more than 1%=0.01 different) and will set r0 to 1. The exact formula is &amp;lt;code&amp;gt;if abs(a - b) &amp;lt;= max(c * max(abs(a), abs(b)), float.epsilon * 8)&amp;lt;/code&amp;gt; for &amp;lt;code&amp;gt;-ap&amp;lt;/code&amp;gt; and is similar for other approximate functions.&lt;br /&gt;
&lt;br /&gt;
https://en.wikipedia.org/wiki/Machine_epsilon&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
  FLT_EPSILON = 2^(−23) ≈ 1.19e−07;        &amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;float (32 bit)&amp;lt;/span&amp;gt;&lt;br /&gt;
  DBL_EPSILON = 2^(−52) ≈ 2.20e−16;        &amp;lt;span style=&amp;quot;color:#4c9700;&amp;quot;&amp;gt;double (64 bit)&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
  &amp;lt;code&amp;gt;if abs(100 - 101) &amp;lt;= max(0.01 * max(abs(100), abs(101)), float.epsilon * 8)&amp;lt;/code&amp;gt;&lt;br /&gt;
  &amp;lt;code&amp;gt;if abs(-1) &amp;lt;= max(0.01 * 101, float.epsilon * 8)&amp;lt;/code&amp;gt;&lt;br /&gt;
  &amp;lt;code&amp;gt;if 1 &amp;lt;= max(0.01 * 101, float.epsilon * 8)&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
  &amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;if 1 &amp;lt;= max(1.01, FLT_EPSILON * 8)&amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;span style=&amp;quot;color:#4c9700;&amp;quot;&amp;gt;if 1 &amp;lt;= max(1.01, DBL_EPSILON * 8)&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
  &amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;if 1 &amp;lt;= max(1.01, 1.19e−07 * 8)&amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;span style=&amp;quot;color:#4c9700;&amp;quot;&amp;gt;if 1 &amp;lt;= max(1.01, 2.20e−16 * 8)&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
  &amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;if 1 &amp;lt;= max(1.01, 0.000000952)&amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;span style=&amp;quot;color:#4c9700;&amp;quot;&amp;gt;if 1 &amp;lt;= max(1.01, 0.00000000000000176)&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
  &amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;if 1 &amp;lt;= 1.01   TRUE   1&amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;span style=&amp;quot;color:#4c9700;&amp;quot;&amp;gt;if 1 &amp;lt;= 1.01   TRUE   1&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Device Variables==&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Activate&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Activate&lt;br /&gt;
:1 if device is activated (usually means running), otherwise 0&lt;br /&gt;
:&amp;lt;code&amp;gt;l r0 d0 Activate # sets r0 to 1 if on or 0 if off&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;AirRelease&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;AirRelease&lt;br /&gt;
&amp;lt;div id=&amp;quot;Charge&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Charge&lt;br /&gt;
:    The current charge the device has.&lt;br /&gt;
&amp;lt;div id=&amp;quot;CLearMemory&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ClearMemory&lt;br /&gt;
:    When set to 1, clears the counter memory (e.g. ExportCount).  Will set itself back to 0 when triggered.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Color&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Color&lt;br /&gt;
:    &amp;lt;div style=&amp;quot;display: inline-block; vertical-align: top; height: 20px; width: 20px; border: 1px solid black; margin-right: 5px; background-color:#212AA5;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;amp;nbsp;0 (or lower) = Blue&lt;br /&gt;
:    &amp;lt;div style=&amp;quot;display: inline-block; vertical-align: top; height: 20px; width: 20px; border: 1px solid black; margin-right: 5px; background-color:#7B7B7B;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;amp;nbsp;1 = Grey &lt;br /&gt;
:    &amp;lt;div style=&amp;quot;display: inline-block; vertical-align: top; height: 20px; width: 20px; border: 1px solid black; margin-right: 5px; background-color:#3F9B39;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;amp;nbsp;2 = Green &lt;br /&gt;
:    &amp;lt;div style=&amp;quot;display: inline-block; vertical-align: top; height: 20px; width: 20px; border: 1px solid black; margin-right: 5px; background-color:#FF662B;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;amp;nbsp;3 = Orange &lt;br /&gt;
:    &amp;lt;div style=&amp;quot;display: inline-block; vertical-align: top; height: 20px; width: 20px; border: 1px solid black; margin-right: 5px; background-color:#E70200;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;amp;nbsp;4 = Red &lt;br /&gt;
:    &amp;lt;div style=&amp;quot;display: inline-block; vertical-align: top; height: 20px; width: 20px; border: 1px solid black; margin-right: 5px; background-color:#FFBC1B;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;amp;nbsp;5 = Yellow &lt;br /&gt;
:    &amp;lt;div style=&amp;quot;display: inline-block; vertical-align: top; height: 20px; width: 20px; border: 1px solid black; margin-right: 5px; background-color:#E7E7E7;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;amp;nbsp;6 = White &lt;br /&gt;
:    &amp;lt;div style=&amp;quot;display: inline-block; vertical-align: top; height: 20px; width: 20px; border: 1px solid black; margin-right: 5px; background-color:#080908;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;amp;nbsp;7 = Black &lt;br /&gt;
:    &amp;lt;div style=&amp;quot;display: inline-block; vertical-align: top; height: 20px; width: 20px; border: 1px solid black; margin-right: 5px; background-color:#633C2B;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;amp;nbsp;8 = Brown &lt;br /&gt;
:    &amp;lt;div style=&amp;quot;display: inline-block; vertical-align: top; height: 20px; width: 20px; border: 1px solid black; margin-right: 5px; background-color:#63633F;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;amp;nbsp;9 = Khaki &lt;br /&gt;
:    &amp;lt;div style=&amp;quot;display: inline-block; vertical-align: top; height: 20px; width: 20px; border: 1px solid black; margin-right: 5px; background-color:#E41C99;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;amp;nbsp;10 = Pink &lt;br /&gt;
:    &amp;lt;div style=&amp;quot;display: inline-block; vertical-align: top; height: 20px; width: 20px; border: 1px solid black; margin-right: 5px; background-color:#732CA7;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;amp;nbsp;11 (or higher) = Purple &lt;br /&gt;
&amp;lt;div id=&amp;quot;CompletionRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;CompletionRatio&lt;br /&gt;
&amp;lt;div id=&amp;quot;ElevatorLevel&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ElevatorLevel&lt;br /&gt;
&amp;lt;div id=&amp;quot;ElevatorSpeed&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ElevatorSpeed&lt;br /&gt;
&amp;lt;div id=&amp;quot;Error&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Error&lt;br /&gt;
:	1 if device is in error state, otherwise 0&lt;br /&gt;
&amp;lt;div id=&amp;quot;ExportCount&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ExportCount&lt;br /&gt;
:    How many items exporfted since last ClearMemory.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Filtration&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Filtration&lt;br /&gt;
:	The current state of the filtration system.  For example filtration = 1 for a Hardsuit when filtration is On.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Harvest&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Harvest&lt;br /&gt;
:	Performs the harvesting action for any plant based machinery.&lt;br /&gt;
:  &amp;lt;code&amp;gt;s d0 Harvest 1 # Performs 1 harvest action on device d0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;Horizontal&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Horizontal&lt;br /&gt;
&amp;lt;div id=&amp;quot;HorizontalRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;HorizontalRatio&lt;br /&gt;
&amp;lt;div id=&amp;quot;Idle&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Idle&lt;br /&gt;
&amp;lt;div id=&amp;quot;ImportCount&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ImportCount&lt;br /&gt;
&amp;lt;div id=&amp;quot;Lock&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Lock&lt;br /&gt;
&amp;lt;div id=&amp;quot;Maximum&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Maximum&lt;br /&gt;
&amp;lt;div id=&amp;quot;Mode&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Mode&lt;br /&gt;
&amp;lt;div id=&amp;quot;On&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;On&lt;br /&gt;
&amp;lt;div id=&amp;quot;Open&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Open&lt;br /&gt;
&amp;lt;div id=&amp;quot;Output&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Output&lt;br /&gt;
&amp;lt;div id=&amp;quot;Plant&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Plant&lt;br /&gt;
:    Performs the planting operation for any plant based machinery.&lt;br /&gt;
:  &amp;lt;code&amp;gt;s d0 Plant 1 # Plants one crop in device d0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;PositionX&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PositionX&lt;br /&gt;
&amp;lt;div id=&amp;quot;PositionY&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PositionY&lt;br /&gt;
&amp;lt;div id=&amp;quot;PositionZ&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PositionZ&lt;br /&gt;
&amp;lt;div id=&amp;quot;Power&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Power&lt;br /&gt;
&amp;lt;div id=&amp;quot;PowerActual&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PowerActual&lt;br /&gt;
&amp;lt;div id=&amp;quot;PowerPotential&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PowerPotential&lt;br /&gt;
&amp;lt;div id=&amp;quot;PowerRequired&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PowerRequired&lt;br /&gt;
&amp;lt;div id=&amp;quot;Pressure&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Pressure&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureExternal&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureExternal&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureInteral&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureInteral&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureSetting&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureSetting&lt;br /&gt;
&amp;lt;div id=&amp;quot;Quantity&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Quantity&lt;br /&gt;
:	Total quantity in the device.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Ratio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Ratio&lt;br /&gt;
:	Context specific value depending on device, 0 to 1 based ratio.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioCarbonDioxide&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioCarbonDioxide&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioNitrogen&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioNitrogen&lt;br /&gt;
:	The ratio of nitrogen in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioOxygen&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioOxygen&lt;br /&gt;
:	The ratio of oxygen in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioPollutant&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioPollutant&lt;br /&gt;
:	The ratio of pollutant in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioVolatiles&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioVolatiles&lt;br /&gt;
:	The ratio of volatiles in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioWater&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioWater&lt;br /&gt;
:	The ratio of water in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Reagents&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Reagents&lt;br /&gt;
&amp;lt;div id=&amp;quot;RecipeHash&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RecipeHash&lt;br /&gt;
&amp;lt;div id=&amp;quot;RequestHash&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ReferenceId&lt;br /&gt;
:    Unique Identifier of a Device, this value is different for every device in a save.&lt;br /&gt;
&amp;lt;div id=&amp;quot;ReferenceId&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RequestHash&lt;br /&gt;
&amp;lt;div id=&amp;quot;RequiredPower&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RequiredPower&lt;br /&gt;
&amp;lt;div id=&amp;quot;Setting&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Setting&lt;br /&gt;
&amp;lt;div id=&amp;quot;SolarAngle&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;SolarAngle&lt;br /&gt;
:    Solar angle of the device.&lt;br /&gt;
:  &amp;lt;code&amp;gt;l r0 d0 SolarAngle # Sets r0 to the solar angle of d0.&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;Temperature&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Temperature&lt;br /&gt;
&amp;lt;div id=&amp;quot;TemperatureSettings&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;TemperatureSettings&lt;br /&gt;
&amp;lt;div id=&amp;quot;TotalMoles&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;TotalMoles&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityMagnitude&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityMagnitude&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityRelativeX&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityRelativeX&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityRelativeY&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityRelativeY&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityRelativeZ&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityRelativeZ&lt;br /&gt;
&amp;lt;div id=&amp;quot;Vertical&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Vertical&lt;br /&gt;
:	Vertical setting of the device.&lt;br /&gt;
&amp;lt;div id=&amp;quot;VerticalRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VerticalRatio&lt;br /&gt;
:	Ratio of vertical setting for device.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Volume&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Volume&lt;br /&gt;
:	Returns the device atmosphere volume&lt;br /&gt;
&lt;br /&gt;
==Slot Variables==&lt;br /&gt;
In general (exceptions exist such as filtration units) slots are assigned as follows.&lt;br /&gt;
:Slot 0: Import&lt;br /&gt;
:Slot 1: Export&lt;br /&gt;
:Slot 2: Inside Machine&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Occupied&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Occupied&lt;br /&gt;
:&amp;lt;code&amp;gt;ls r0 d0 2 Occupied #Stores 1 in r0 if d0 has more seeds&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;ls vOccupied dThisVictim 2 Occupied #stores 1 in vOccupied if dThisVictim has more seeds&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;OccupantHash&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;OccupantHash&lt;br /&gt;
&amp;lt;div id=&amp;quot;Quantity&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Quantity&lt;br /&gt;
&amp;lt;div id=&amp;quot;Damage&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Damage&lt;br /&gt;
&amp;lt;div id=&amp;quot;Efficiency&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Efficiency&lt;br /&gt;
&amp;lt;div id=&amp;quot;Health&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Health&lt;br /&gt;
&amp;lt;div id=&amp;quot;Growth&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Growth&lt;br /&gt;
:&amp;lt;code&amp;gt;ls r0 d0 0 Growth # Store the numerical growth stage of d0 in r0&amp;lt;/code&amp;gt; &lt;br /&gt;
&amp;lt;div id=&amp;quot;Pressure&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Pressure&lt;br /&gt;
&amp;lt;div id=&amp;quot;Temperature&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Temperature&lt;br /&gt;
&amp;lt;div id=&amp;quot;Charge&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Charge&lt;br /&gt;
&amp;lt;div id=&amp;quot;ChargeRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ChargeRatio&lt;br /&gt;
&amp;lt;div id=&amp;quot;Class&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Class&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureWaste&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureWaste&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureAir&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureAir&lt;br /&gt;
&amp;lt;div id=&amp;quot;MaxQuantity&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;MaxQuantity&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Mature&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Mature&lt;br /&gt;
:&amp;lt;code&amp;gt;ls r0 d0 0 Mature # Store 1 in r0 if d0 has a mature crop&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;ls vMature dThisVictim 0 Mature # Store 1 in vMature if dThisVictim has a mature crop&amp;lt;/code&amp;gt;&lt;br /&gt;
;ReferenceId&lt;br /&gt;
:    Unique Identifier of a Device, this value is different for every device in a save.&lt;br /&gt;
&amp;lt;div id=&amp;quot;ReferenceId&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=Examples=&lt;br /&gt;
Previous examples were obsolete due to game changes, or confusing, they have been moved into the Discussions section&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Harvie automation===&lt;br /&gt;
This script uses the batch instruction &amp;lt;code&amp;gt;sb ...&amp;lt;/code&amp;gt; to control all Harvie devices on the network. But only one Harvie and one Tray will be the &#039;&#039;master&#039;&#039; and have their values read, the rest of the Harvies will repeat exactly what this unit does. Some problems with this design is that different types of crops mature at different speeds, and if seeds were manually planted and the master unit recieved the first seed, the harvesting action will be performed too early on all the other plants since they are growing a few seconds slower.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot; data-expandtext=&amp;quot;{{int:Expand, Automated Harvie Script}}&amp;quot; data-collapsetext=&amp;quot;{{int:Collapse, Automated Harvie Script}}&amp;quot;&amp;gt;&lt;br /&gt;
{{ICCode|&lt;br /&gt;
alias dHarvie d0&lt;br /&gt;
alias dTray d1&lt;br /&gt;
&lt;br /&gt;
alias rHarvieHash r8&lt;br /&gt;
alias rTrayHash r9&lt;br /&gt;
l rHarvieHash dHarvie PrefabHash&lt;br /&gt;
l rTrayHash dTray PrefabHash&lt;br /&gt;
&lt;br /&gt;
main:&lt;br /&gt;
yield&lt;br /&gt;
#read plant data from the Tray&lt;br /&gt;
ls r0 dTray 0 Mature&lt;br /&gt;
#harvestable plants return 1, young plants return 0&lt;br /&gt;
#nothing planted returns -1&lt;br /&gt;
beq r0 -1 plantCrop&lt;br /&gt;
beq r0 1 harvestCrop&lt;br /&gt;
ls r0 dTray 0 Seeding&lt;br /&gt;
#seeds available returns 1, all seeds picked returns 0&lt;br /&gt;
#plants too young or old for seeds returns -1&lt;br /&gt;
beq r0 1 harvestCrop&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
plantCrop:&lt;br /&gt;
#stop the planting if no seeds available&lt;br /&gt;
#otherwise it will plant nothing repeatedly&lt;br /&gt;
ls r0 dHarvie 0 Occupied&lt;br /&gt;
beq r0 0 main&lt;br /&gt;
sb rHarvieHash Plant 1&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
harvestCrop:&lt;br /&gt;
sb rHarvieHash Harvest 1&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
### End Script ###&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
===Solar Panel 2-axis tracking===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot; data-expandtext=&amp;quot;{{int:Expand, Solar Panel 2-axis tracking}}&amp;quot; data-collapsetext=&amp;quot;{{int:Collapse, Solar Panel 2-axis tracking}}&amp;quot;&amp;gt;&lt;br /&gt;
{{ICCode|&lt;br /&gt;
#2 Axis Solar Tracking adapted from CowsAreEvil.&lt;br /&gt;
#Place all panels in uniform manner.&lt;br /&gt;
#Set one to 15 Vertical(Min value). 0 Horizontal.&lt;br /&gt;
#Take note direction panel faces.&lt;br /&gt;
#Place daylight sensor flat pointing in the direction&lt;br /&gt;
#the panel now faces. (Cable port facing opposite)&lt;br /&gt;
&lt;br /&gt;
#Alias the sensor to d0&lt;br /&gt;
alias sensor d0&lt;br /&gt;
&lt;br /&gt;
# define the Panel variants&lt;br /&gt;
define Heavy -934345724&lt;br /&gt;
define HeavyDual -1545574413&lt;br /&gt;
define Solar -2045627372&lt;br /&gt;
define SolarDual -539224550&lt;br /&gt;
&lt;br /&gt;
start:&lt;br /&gt;
yield&lt;br /&gt;
#Check for daylight.&lt;br /&gt;
l r0 sensor Activate&lt;br /&gt;
beqz r0 reset&lt;br /&gt;
#Read the Horizontal data.&lt;br /&gt;
l r0 sensor Horizontal&lt;br /&gt;
#Set batch to the panels.&lt;br /&gt;
sb Heavy Horizontal r0&lt;br /&gt;
sb HeavyDual Horizontal r0&lt;br /&gt;
sb Solar Horizontal r0&lt;br /&gt;
sb SolarDual Horizontal r0&lt;br /&gt;
#Read the Vertical data and subtract 90&lt;br /&gt;
l r0 sensor Vertical&lt;br /&gt;
sub r0 90 r0&lt;br /&gt;
#Set batch to the panels.&lt;br /&gt;
sb Heavy Vertical r0&lt;br /&gt;
sb HeavyDual Vertical r0&lt;br /&gt;
sb Solar Vertical r0&lt;br /&gt;
sb SolarDual Vertical r0&lt;br /&gt;
j start&lt;br /&gt;
&lt;br /&gt;
reset:&lt;br /&gt;
yield&lt;br /&gt;
sb Heavy Horizontal 270 #Edit this to face sunrise.&lt;br /&gt;
sb HeavyDual Horizontal 270 #Edit this&lt;br /&gt;
sb Solar Horizontal 270 #Edit this&lt;br /&gt;
sb SolarDual Horizontal 270 #Edit this&lt;br /&gt;
sb Heavy Vertical 0&lt;br /&gt;
sb HeavyDual Vertical 0&lt;br /&gt;
sb Solar Vertical 0&lt;br /&gt;
sb SolarDual Vertical 0&lt;br /&gt;
sleep 10&lt;br /&gt;
j start&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
===Example experiment: how many lines of code are executed each tick?===&lt;br /&gt;
To determine this, a script without &amp;lt;code&amp;gt;yield&amp;lt;/code&amp;gt; will be used. It should have as few lines as possible (so no labels are used, but a reset value at the top will be needed) and count the number of lines, the IC Housing will be used to display the result.&lt;br /&gt;
{{ICCode|&lt;br /&gt;
move r0 1   #the first line has number 0&lt;br /&gt;
add r0 r0 3&lt;br /&gt;
s db Setting r0&lt;br /&gt;
j 1&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Result (the numbers appears every 0.5 seconds):&lt;br /&gt;
&amp;lt;br&amp;gt;127&lt;br /&gt;
&amp;lt;br&amp;gt;256 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;385 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;511 (+126)&lt;br /&gt;
&amp;lt;br&amp;gt;640 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;769 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;895 (+126)&lt;br /&gt;
&amp;lt;br&amp;gt;1024 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;1153 (+129)&lt;br /&gt;
&lt;br /&gt;
There is a repeating +129, +129, +126 sequence, a hint that the real value is 128. Which also happens to be the number of lines in a script, which makes sense. A variation of this experiment will show that empty rows are also counted towards this number.&lt;br /&gt;
&lt;br /&gt;
===Push &amp;amp; Pop return address when calling multiple levels of functions===&lt;br /&gt;
More advanced scripts, or scripts that wish to be more generic, may want to allow calling more than one level of function. Allowing this requires pushing the current &amp;lt;code&amp;gt;ra&amp;lt;/code&amp;gt; register before calling the function, then popping &amp;lt;code&amp;gt;ra&amp;lt;/code&amp;gt; back afterward.&lt;br /&gt;
&lt;br /&gt;
For example, imagine that the main loop of the code wants to call function &amp;lt;code&amp;gt;orientPanelsToStar&amp;lt;/code&amp;gt;, which would calculate the panels&#039; orientations, then place them in &amp;lt;code&amp;gt;r0&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;r1&amp;lt;/code&amp;gt;, and then in turn itself call &amp;lt;code&amp;gt;orientPanelsTo&amp;lt;/code&amp;gt;, which would set the orientations of all panels based on the precomputed values of &amp;lt;code&amp;gt;r0&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;r1&amp;lt;/code&amp;gt;. Doing so requires &amp;lt;code&amp;gt;orientPanelsToStar&amp;lt;/code&amp;gt; to push &amp;lt;code&amp;gt;ra&amp;lt;/code&amp;gt; before calling &amp;lt;code&amp;gt;orientPanelsTo&amp;lt;/code&amp;gt;, as show in the code below.&lt;br /&gt;
&lt;br /&gt;
{{ICCode|&lt;br /&gt;
orientPanelsToStar:&lt;br /&gt;
# Save return address set by the &#039;jal&#039; instruction&lt;br /&gt;
push ra&lt;br /&gt;
&lt;br /&gt;
# ...Calculate panels&#039; orientation, for example leaving the results in r0 and r1...&lt;br /&gt;
&lt;br /&gt;
# Now call orientPanelsTo to actually set the panels&#039; orientation&lt;br /&gt;
# based on the computed values of r0 and r1.&lt;br /&gt;
jal orientPanelsTo&lt;br /&gt;
&lt;br /&gt;
# ...Call other functions here if desired...&lt;br /&gt;
&lt;br /&gt;
# Restore the return address of orientPanelsToStar itself&lt;br /&gt;
pop ra&lt;br /&gt;
# Return to caller&lt;br /&gt;
j ra&lt;br /&gt;
&lt;br /&gt;
##########&lt;br /&gt;
&lt;br /&gt;
orientPanelsTo:&lt;br /&gt;
# ...Actually set panels&#039; orientation...&lt;br /&gt;
&lt;br /&gt;
# Return to caller&lt;br /&gt;
j ra&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
This code would behave incorrectly if &amp;lt;code&amp;gt;push ra&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;pop ra&amp;lt;/code&amp;gt; were not present: within &amp;lt;code&amp;gt;orientPanelsToStar&amp;lt;/code&amp;gt;, doing &amp;lt;code&amp;gt;jal orientPanelsTo&amp;lt;/code&amp;gt; would replace the current value of the &amp;lt;code&amp;gt;ra&amp;lt;/code&amp;gt; register, permanently erasing where &amp;lt;code&amp;gt;orientPanelsToStar&amp;lt;/code&amp;gt; itself should jump back to once done. Pushing and popping &amp;lt;code&amp;gt;ra&amp;lt;/code&amp;gt; effectively saves its value until we need it again.&lt;br /&gt;
&lt;br /&gt;
(A tempting but wrong approach to &#039;saving&#039; &amp;lt;code&amp;gt;ra&amp;lt;/code&amp;gt; would be to &amp;lt;code&amp;gt;move&amp;lt;/code&amp;gt; it within a different register (e.g. &amp;lt;code&amp;gt;r15&amp;lt;/code&amp;gt;) before calling &amp;lt;code&amp;gt;orientPanelsTo&amp;lt;/code&amp;gt;, however that only permits two levels of functions, since if &amp;lt;code&amp;gt;orientPanelsTo&amp;lt;/code&amp;gt; itself wants to call another function, it would not be able to use &amp;lt;code&amp;gt;r15&amp;lt;/code&amp;gt; to save its &amp;lt;code&amp;gt;ra&amp;lt;/code&amp;gt; register since &amp;lt;code&amp;gt;r15&amp;lt;/code&amp;gt; already saves &amp;lt;code&amp;gt;orientPanelsToStar&amp;lt;/code&amp;gt;&#039;s return address. Just pushing/popping &amp;lt;code&amp;gt;ra&amp;lt;/code&amp;gt; fixes all issues, allowing for a ginormous maximum function call depth of 512!)&lt;br /&gt;
&lt;br /&gt;
As a last note, if the script will push/pop values like &amp;lt;code&amp;gt;ra&amp;lt;/code&amp;gt;, starting the script by clearing the stack (which where push/pop move the data to) by running &amp;lt;code&amp;gt;clr db&amp;lt;/code&amp;gt; is advisable, unless the IC10 chip is not inserted inside an IC Housing (e.g. inserted in the slot of an Air Conditioner), since &amp;lt;code&amp;gt;clr db&amp;lt;/code&amp;gt; will cause an error in this case. To do so, run &amp;lt;code&amp;gt;clr db&amp;lt;/code&amp;gt; before the script&#039;s main loop.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Links=&lt;br /&gt;
----&lt;br /&gt;
* Stationeers online IC10 Emulators so you can develop your code without repeatedly dying in game&lt;br /&gt;
** [https://ic10.dev/] Stationeers Code Simulator&lt;br /&gt;
** [https://ic10emu.dev] Stationeers IC10 Editor &amp;amp; Emulator - A feature packed code editor for Stationeers IC10 code, paired with a robust debugger and emulator. Edit, test, and share code.&lt;br /&gt;
** [https://stationeering.com/tools/ic] Stationeering provides a simulation of the IC10 chip inside Stationeers. IDE with error checking, full visibility of stack and registers.&lt;br /&gt;
* [http://www.easy68k.com/] EASy68K is a 68000 Structured Assembly Language IDE.&lt;br /&gt;
* [https://marketplace.visualstudio.com/items?itemName=Traineratwot.stationeers-ic10] syntax highlighting for IC10 MIPS for Visual Studio Code (updated Feb 10th 2022)&lt;br /&gt;
* [https://pastebin.com/6Uw1KSRN] syntax highlighting for IC10 MIPS for KDE kwrite/kate text editor&lt;br /&gt;
* [https://drive.google.com/file/d/1yEsJ-u94OkuMQ8K6fY7Ja1HNpLcAdjo_/view] syntax highlighting for IC10 MIPS for Notepad++&lt;br /&gt;
* [https://drive.google.com/file/d/1Xrv5U0ZI5jDcPv7yX7EAAxaGk5hKP0xO/view?usp=sharing] syntax highlighting for IC10 MIPS for Notepad++ (updated: 11/08/2022)&lt;br /&gt;
* [https://pastebin.com/3kmGy0NN] syntax highlighting for IC10 MIPS for Notepad++ (updated: 23/03/2024)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=Index=&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|+Functions &lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
*[[#abs|abs]]&lt;br /&gt;
*[[#add|add]]&lt;br /&gt;
*[[#alias|alias]]&lt;br /&gt;
*[[#and|and]]&lt;br /&gt;
*[[#beq|beq]]&lt;br /&gt;
*[[#bgez|bgez]]&lt;br /&gt;
*[[#bgtz|bgtz]]&lt;br /&gt;
*[[#blez|blez]]&lt;br /&gt;
*[[#bltz|bltz]]&lt;br /&gt;
*[[#bne|bne]]&lt;br /&gt;
*[[#breq|breq]]&lt;br /&gt;
*[[#brgez|brgez]]&lt;br /&gt;
*[[#brgtz|brgtz]]&lt;br /&gt;
*[[#brlez|brlez]]&lt;br /&gt;
*[[#brltz|brltz]]&lt;br /&gt;
*[[#brne|brne]]&lt;br /&gt;
*[[#ceil|cell]]&lt;br /&gt;
*[[#div|div]]&lt;br /&gt;
*[[#exp|exp]]&lt;br /&gt;
*[[#floor|floor]]&lt;br /&gt;
*[[#j|j]]&lt;br /&gt;
*[[#jr|jr]]&lt;br /&gt;
*[[#l|l]]&lt;br /&gt;
*[[#log|log]]&lt;br /&gt;
*[[#ls|ls]]&lt;br /&gt;
*[[#max|max]]&lt;br /&gt;
*[[#min|min]]&lt;br /&gt;
*[[#mod|mod]]&lt;br /&gt;
*[[#move|move]]&lt;br /&gt;
*[[#mul|mul]]&lt;br /&gt;
*[[#nor|nor]]&lt;br /&gt;
*[[#or|or]]&lt;br /&gt;
*[[#rand|rand]]&lt;br /&gt;
*[[#round|round]]&lt;br /&gt;
*[[#s|s]]&lt;br /&gt;
*[[#slt|slt]]&lt;br /&gt;
*[[#sqrt|sqrt]]&lt;br /&gt;
*[[#sub|sub]]&lt;br /&gt;
*[[#trunc|trunc]]&lt;br /&gt;
*[[#xor|xor]]xor&lt;br /&gt;
*[[#yield|yield]]&lt;br /&gt;
*[[##|#]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|+Device Variables &lt;br /&gt;
&amp;lt;div  class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
*[[#Activate|Activate]]&lt;br /&gt;
*[[#AirRelease|AirRelease]]&lt;br /&gt;
*[[#Charge|Charge]]&lt;br /&gt;
*[[#CLearMemory|CLearMemory]]&lt;br /&gt;
*[[#Color|Color]]&lt;br /&gt;
*[[#CompletionRatio|CompletionRatio]]&lt;br /&gt;
*[[#ElevatorLevel|ElevatorLevel]]&lt;br /&gt;
*[[#ElevatorSpeed|ElevatorSpeed]]&lt;br /&gt;
*[[#Error|Error]]&lt;br /&gt;
*[[#ExportCount|ExportCount]]&lt;br /&gt;
*[[#Filtration|Filtration]]&lt;br /&gt;
*[[#Harvest|Harvest]]&lt;br /&gt;
*[[#Horizontal|Horizontal]]&lt;br /&gt;
*[[#HorizontalRatio|HorizontalRatio]]&lt;br /&gt;
*[[#Idle|Idle]]&lt;br /&gt;
*[[#ImportCount|ImportCount]]&lt;br /&gt;
*[[#Lock|Lock]]&lt;br /&gt;
*[[#Maximum|Maximum]]&lt;br /&gt;
*[[#Mode|Mode]]&lt;br /&gt;
*[[#On|On]]&lt;br /&gt;
*[[#Open|Open]]&lt;br /&gt;
*[[#Output|Output]]&lt;br /&gt;
*[[#Plant|Plant]]&lt;br /&gt;
*[[#PositionX|PositionX]]&lt;br /&gt;
*[[#PositionY|PositionY]]&lt;br /&gt;
*[[#PositionZ|PositionZ]]&lt;br /&gt;
*[[#Power|Power]]&lt;br /&gt;
*[[#PowerActual|PowerActual]]&lt;br /&gt;
*[[#PowerPotential|PowerPotential]]&lt;br /&gt;
*[[#PowerRequired|PowerRequired]]&lt;br /&gt;
*[[#Pressure|Pressure]]&lt;br /&gt;
*[[#PressureExternal|PressureExternal]]&lt;br /&gt;
*[[#PressureInteral|PressureInteral]]&lt;br /&gt;
*[[#PressureSetting|PressureSetting]]&lt;br /&gt;
*[[#Quantity|Quantity]]&lt;br /&gt;
*[[#Ratio|Ratio]]&lt;br /&gt;
*[[#RatioCarbonDioxide|RatioCarbonDioxide]]&lt;br /&gt;
*[[#RatioNitrogen|RatioNitrogen]]&lt;br /&gt;
*[[#RatioOxygen|RatioOxygen]]&lt;br /&gt;
*[[#RatioPollutant|RatioPollutant]]&lt;br /&gt;
*[[#RatioVolatiles|RatioVolatiles]]&lt;br /&gt;
*[[#RatioWater|RatioWater]]&lt;br /&gt;
*[[#Reagents|Reagents]]&lt;br /&gt;
*[[#RecipeHash|RecipeHash]]&lt;br /&gt;
*[[#RequestHash|RequestHash]]&lt;br /&gt;
*[[#RequiredPower|RequiredPower]]&lt;br /&gt;
*[[#Setting|Setting]]&lt;br /&gt;
*[[#SolarAngle|SolarAngle]]&lt;br /&gt;
*[[#Temperature|Temperature]]&lt;br /&gt;
*[[#TemperatureSettings|TemperatureSettings]]&lt;br /&gt;
*[[#TotalMoles|TotalMoles]]&lt;br /&gt;
*[[#VelocityMagnitude|VelocityMagnitude]]&lt;br /&gt;
*[[#VelocityRelativeX|VelocityRelativeX]]&lt;br /&gt;
*[[#VelocityRelativeY|VelocityRelativeY]]&lt;br /&gt;
*[[#VelocityRelativeZ|VelocityRelativeZ]]&lt;br /&gt;
*[[#Vertical|Vertical]]&lt;br /&gt;
*[[#VerticalRatio|VerticalRatio]]&lt;br /&gt;
*[[#Volume|Volume]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|+Slot Variables &lt;br /&gt;
&amp;lt;div  class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
*[[#Occupied|Occupied]]&lt;br /&gt;
*[[#OccupantHash|OccupantHash]]&lt;br /&gt;
*[[#Quantity|Quantity]]&lt;br /&gt;
*[[#Damage|Damage]]&lt;br /&gt;
*[[#Efficiency|Efficiency]]&lt;br /&gt;
*[[#Health|Health]]&lt;br /&gt;
*[[#Growth|Growth]]&lt;br /&gt;
*[[#Pressure|Pressure]]&lt;br /&gt;
*[[#Temperature|Temperature]]&lt;br /&gt;
*[[#Charge|Charge]]&lt;br /&gt;
*[[#ChargeRatio|ChargeRatio]]&lt;br /&gt;
*[[#Class|Class]]&lt;br /&gt;
*[[#PressureWaste|PressureWaste]]&lt;br /&gt;
*[[#PressureAir|PressureAir]]&lt;br /&gt;
*[[#MaxQuantity|MaxQuantity]]&lt;br /&gt;
*[[#Mature|Mature]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Chicken&amp;diff=19832</id>
		<title>Chicken</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Chicken&amp;diff=19832"/>
		<updated>2024-01-20T12:44:15Z</updated>

		<summary type="html">&lt;p&gt;Wark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Creature]]&lt;br /&gt;
{{Infobox | decat = yes&lt;br /&gt;
 | title = Chicken&lt;br /&gt;
 | image = [[File:NpcChicken.png]]&lt;br /&gt;
 | header2 = Temperature&lt;br /&gt;
   {{Infobox | decat = yes | child = yes&lt;br /&gt;
    | label1 = Flashpoint&lt;br /&gt;
    |  data1 = 373K (100°C)&lt;br /&gt;
    | label2 = Autoignition&lt;br /&gt;
    |  data2 = 573K (300°C)&lt;br /&gt;
    | label3 = Thermal Convection&lt;br /&gt;
    |  data3 = 0,149&lt;br /&gt;
    | label4 = Thermal Radiation&lt;br /&gt;
    |  data4 = 0,149&lt;br /&gt;
   }}&lt;br /&gt;
 | header3 = Other properties&lt;br /&gt;
   {{Infobox | decat = yes | child = yes&lt;br /&gt;
    | label1 = Paintable&lt;br /&gt;
    |  data1 = No&lt;br /&gt;
   }}&lt;br /&gt;
 | header4 = Prefabs&lt;br /&gt;
   {{Infobox | decat = yes | child = yes&lt;br /&gt;
    | label1 = Prefab Hash&lt;br /&gt;
    |  data1 = 399074198&lt;br /&gt;
    | label2 = Prefab Name&lt;br /&gt;
    |  data2 = NpcChicken&lt;br /&gt;
   }}&lt;br /&gt;
}}&lt;br /&gt;
{{Infobox | decat = yes&lt;br /&gt;
 | title = Slots&lt;br /&gt;
 | header1 = Brain&lt;br /&gt;
   {{Infobox | decat = yes | child = yes&lt;br /&gt;
    | label1 = Type&lt;br /&gt;
    |  data1 = Organ&lt;br /&gt;
    | label2 = Index&lt;br /&gt;
    |  data2 = 0&lt;br /&gt;
   }}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
Chickens are hatched by dropping a [[Fertilized Egg]] in the right conditions (20C-30C). The chick will hatch out of the egg after a few minutes. The chicken should lay a Fertilized Egg and some [[Unfertilized Egg]]s before it dies (numbers may very depending on conditions &#039;&#039;&#039;Needs more research&#039;&#039;&#039;).&lt;br /&gt;
Chickens do not appear to eat [[Potato]]es or [[Fern]]s but will eat [[Corn]], [[Wheat]] and [[Soybean]]s.&lt;br /&gt;
A chick or chicken is much like a plant and will display a life bar when in need of something.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Warning:&#039;&#039;&#039; Chickens will eat items contained in closed storage boxes, lockers and stored on your character. They will also consume live vegetation so be very careful about where you let them go.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Info !! &lt;br /&gt;
|-&lt;br /&gt;
| Pressure || Normal Human should be good 50kPa-100kPa&lt;br /&gt;
|-&lt;br /&gt;
| Temperature || On Europa (100% o2) it survives at the harsh -150°C&lt;br /&gt;
|-&lt;br /&gt;
| Atmosphere || &amp;gt;10% o2 at 50kPa ?&lt;br /&gt;
|-&lt;br /&gt;
| Longest Life Span || ? Days (possibly infinite)&lt;br /&gt;
|-&lt;br /&gt;
| Crops Consumed Per Day || 40&lt;br /&gt;
|-&lt;br /&gt;
| [[Fertilized Egg]]s laid || 1 ?&lt;br /&gt;
|-&lt;br /&gt;
| [[Unfertilized Egg]]s laid || 5 ?&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
The Chicken lays an egg every 1-1.5 minutes. With probability of 15% the egg will be fertilized.&lt;br /&gt;
&lt;br /&gt;
Chicken Stats&lt;br /&gt;
&lt;br /&gt;
My 1st Chicken managed to eat 26 wheat, 8 corn and 5 soy in about a day and a half. I strongly suggest rationing!&lt;br /&gt;
It also produced 6 Unfertilized Eggs and 1 Fertilized Egg. I Suspect they produce 1 Fertilized Egg per day. My chicken managed to produce an egg even though it was starving suggesting a time delay and not health dependencies. My 1st Chick also consumed 7mols of O2 in that time.&lt;br /&gt;
&lt;br /&gt;
My 2nd Chicken lasted 2 full days eating 80 corn and produced 6 Fertilized Eggs and 6 Unfertilized Eggs before dying of starvation.&lt;br /&gt;
&lt;br /&gt;
My 1st Chicken Batch: 6 chickens ( Unfed ) lasted about half a day producing 3 eggs each. 4 Fertilized Eggs and 14 Unfertilized Eggs. &#039;&#039;&#039;Need to replay tests to check results&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Chickens require much more food than your player will usually need&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Another set of observations done at normal difficulty on Mars got the following results:&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
chickens...&amp;lt;br&amp;gt;&lt;br /&gt;
...need an oxygen ratio of 10% or more, lowest allowed pressure is around 1.5kPa at 20°C (but this could also be a &amp;quot;mol per grid&amp;quot; kind of value)&amp;lt;br&amp;gt;&lt;br /&gt;
...consume a tiny amount of oxygen (approximately 0.001 mol per second) but doesn&#039;t produce any CO2&amp;lt;br&amp;gt;&lt;br /&gt;
...will fall unconscious when suffocating which stops them from laying eggs&amp;lt;br&amp;gt;&lt;br /&gt;
...eat only when they are hungry (eating 1 corn added 2.5 to the &amp;lt;Nutrition&amp;gt; parameter in world.xml, when taking starvation damage it could eat 2 corns at once)&amp;lt;br&amp;gt;&lt;br /&gt;
...take damage from suffocation (very slowly), starvation, storms, explosions and catching on fire (when the atmosphere is burning)&amp;lt;br&amp;gt;&lt;br /&gt;
...take no damage from temperature (tested with -200°C and 400°C)&amp;lt;br&amp;gt;&lt;br /&gt;
...lay an egg every 400 seconds on average (the &amp;lt;LayEggTimer&amp;gt; parameter in world.xml appears to be in game-ticks)&amp;lt;br&amp;gt;&lt;br /&gt;
...are paralyzed when inside a 1x1 area (will not walk or jump), but will still lay eggs and eat (railings makes eggs easy to reach)&lt;br /&gt;
&lt;br /&gt;
fertilized eggs...&amp;lt;br&amp;gt;&lt;br /&gt;
...can only hatch when the temperature is 15.15°C or above (at any pressure in any gas) (very useful to prevent overpopulation)&amp;lt;br&amp;gt;&lt;br /&gt;
...will hatch after 2 minutes on the floor, after approximately 2.5 more minutes the chick mature into an adult&amp;lt;br&amp;gt;&lt;br /&gt;
...will not hatch when stored in lockers&amp;lt;br&amp;gt;&lt;br /&gt;
...are laid randomly 10-20% of the time&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Phase_Change_guide&amp;diff=18089</id>
		<title>Phase Change guide</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Phase_Change_guide&amp;diff=18089"/>
		<updated>2023-11-03T09:41:28Z</updated>

		<summary type="html">&lt;p&gt;Wark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;game version: 0.2.4297&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=Phase Change Update=&lt;br /&gt;
&lt;br /&gt;
In the Phase Change Update (july 2023) the 7 in-game gases (O2, N2, CO2, N2O, H2O, Volatiles and Pollutant) can now be in three different states; gas, liquid and solid. Gases and solids can exist by themselves, but a liquid will always co-exist with a gas (of any type). Phase changes are not instant, so it will take some time for them to stabilize.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How to read the in-game Stationpedia phase change diagrams==&lt;br /&gt;
[[File:Phase change keywords.jpg]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;&#039;Specific heat&#039;&#039;&#039; = the energy per mol required to change the temperature by 1°C of both gas and liquid states&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;&#039;Freezing temperature&#039;&#039;&#039; = where a gas or liquid turns into solid (this is dangerous to pipes)&lt;br /&gt;
&amp;lt;br&amp;gt;(unimportant) &#039;&#039;&#039;Boiling temperature&#039;&#039;&#039; = the temperature where the &amp;quot;Vapor pressure&amp;quot; is equal to 100kPa (slightly incorrect compared to in-game values)&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;&#039;Latent heat&#039;&#039;&#039; = the energy per mol that is released by condensation and consumed by evaporation&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;&#039;Min Condensation Pressure&#039;&#039;&#039; = below this pressure a gas will not condense into liquid (allows gases to freeze into solids)&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;&#039;Max liquid temperature&#039;&#039;&#039; = a gas can&#039;t condense into liquid above this temperature (gas-pipes are safe from liquid damage)&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;&#039;Vapor pressure&#039;&#039;&#039; = (the pressure value given by the graph in the liquid / gas range, in real life solids can have a vapor pressure too) a liquid evaporates when below it, a gas condensates when above it&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Phase change graph.jpg]]&lt;br /&gt;
&lt;br /&gt;
The Stationpedia graphs are divided into 3 different regions. Solid-state to the left, liquid / gas -state in the middle and the gas-state on the right. The term &amp;quot;Vapor pressure&amp;quot; isn&#039;t mentioned but is the pressure value that is read from the graph in the liquid / gas temperature range. This value is not completely accurate however, comparing the graph to in-game pressures show that they are slightly off (see the picture above: the -111°C is actually at 6000kPa), but it&#039;s always close enough to be helpful.&lt;br /&gt;
&lt;br /&gt;
For &#039;&#039;&#039;solids&#039;&#039;&#039; the &amp;quot;Vapor pressure&amp;quot; is zero, even though the graph claims it to be 6.3 kPa (see footnote 1)&lt;br /&gt;
&lt;br /&gt;
For &#039;&#039;&#039;liquids&#039;&#039;&#039; the &amp;quot;Vapor pressure&amp;quot; is the pressure where a liquid will stop evaporating. This pressure doesn&#039;t have to come from the same type of gas, another gas can also provide that pressure. Oxygen, Nitrogen and Volatiles are all good pressurants because they have low values for &amp;quot;Max liquid temperature&amp;quot; which makes them hard to turn into liquids (which would contaminate the liquid they are pressurizing).&lt;br /&gt;
&lt;br /&gt;
For a &#039;&#039;&#039;gas&#039;&#039;&#039; with a temperature above the &amp;quot;Max liquid temperature&amp;quot; the &amp;quot;Vapor pressure&amp;quot; means nothing, because it&#039;s too hot to undergo any phase-changes in that range. But when the temperature drops below the &amp;quot;Max liquid temperature&amp;quot; (into the liquid / gas temperature range) the &amp;quot;Vapor pressure&amp;quot; becomes the lowest pressure required for a gas to start condensating. A gas can also turn into a solid (ice) directly without becoming a liquid first, this will happen if the temperature drops to the freezing point while the pressure of the gas is kept below the &amp;quot;Min Condensation Pressure&amp;quot;. Example: Carbondioxide has a &amp;quot;Min Condensation Pressure&amp;quot; of 517kPa (at -55°C) and freezes at -55°C, so below 517kPa that gas will turn directly into a solid with a broken pipe as the result, this makes carbondioxide a risky (=fun) choice as a coolant gas despite its high capacity for absorbing heat (due to its high specific heat value).&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Condensation&#039;&#039;&#039; is when a gas becomes liquid, this will release energy which increases the temperature.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Evaporation&#039;&#039;&#039; is when a liquid becomes gas, this will consume energy which decreases the temperature.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Freezing&#039;&#039;&#039; is when a gas or liquid becomes solid, this phase change does not appear to change the temperature. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Valve and Pump behaviour==&lt;br /&gt;
(incomplete list, there are other objects with gas/liquid connections that could potentially move liquids and gases in useful ways)&lt;br /&gt;
&lt;br /&gt;
Moves both gas and liquid&lt;br /&gt;
*Filtration unit&lt;br /&gt;
*Regulator&lt;br /&gt;
*Volume Pump&lt;br /&gt;
*Turbo Pump&lt;br /&gt;
*Valve&lt;br /&gt;
*One-way Valve&lt;br /&gt;
*Liquid Regulator&lt;br /&gt;
*Liquid Volume Pump&lt;br /&gt;
*Liquid Turbo Pump&lt;br /&gt;
*Liquid Valve&lt;br /&gt;
*Liquid One-way Valve&lt;br /&gt;
*Condensation Chamber (the gas-input)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Moves only gas&lt;br /&gt;
*Purge Valve (from liquid-pipes into gas-pipes)&lt;br /&gt;
*Pressurant Valve (from gas-pipes into liquid-pipes)&lt;br /&gt;
*Liquid Regulator with Setting = 0% (between liquid-pipes)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Moves only liquid&lt;br /&gt;
*Condensation Valve (from gas-pipes into liquid-pipes)&lt;br /&gt;
*Evaporation Valve (from liquid-pipes into gas-pipes)&lt;br /&gt;
*Evaporation Chamber (the liquid-input)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Liquid drain behaviour==&lt;br /&gt;
*Passive Liquid Drain (placed on gas-pipes, dumps liquids into the atmosphere)&lt;br /&gt;
*Active Liquid Outlet (dumps liquids from liquid-pipes into the atmosphere)&lt;br /&gt;
*Passive Liquid Inlet (works like a Passive Vent but for liquid-pipes, gases can enter/exit and atmospheric liquids can enter)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Pipe damage==&lt;br /&gt;
Gas pipes:&lt;br /&gt;
&amp;lt;br&amp;gt;Takes damage from liquids if the &amp;quot;stress&amp;quot; value goes above 100%. They also take damage if an unknown amount of liquids or gas freezes into a solid.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;Stress in % = 5000 x &amp;quot;liters of liquid&amp;quot; / &amp;quot;pipe network volume&amp;quot;&amp;lt;/code&amp;gt; (see footnote 2). &lt;br /&gt;
&lt;br /&gt;
Liquid pipes:&lt;br /&gt;
&amp;lt;br&amp;gt;Takes damage if the gas pressure goes above 6MPa, or if the liquid or gas freezes into a solid. The pipe volume is shared by both the gas and the liquid, so a liquid-pipe can become overpressurized by adding more liquid even though liquids themselves have no pressure.&lt;br /&gt;
&lt;br /&gt;
Exploit:&lt;br /&gt;
&amp;lt;br&amp;gt;Pipes inside double-welded frames will never take damage nor break from high pressure or stress. But they will still creak and moan.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Separating a mix of gases or a mix of liquids==&lt;br /&gt;
Filtration: Filtration units can separate both gases and liquids, but too much liquid will damage the gas-pipes (unless using an exploit, see &amp;quot;Pipe damage&amp;quot; above).&lt;br /&gt;
&lt;br /&gt;
Condensation: Condense a single type of gas into liquid from a gas mix when the temperature is below one of the gases &amp;quot;Max liquid temperature&amp;quot; and the pressure is above its &amp;quot;Vapor pressure&amp;quot; (performed in the Condensation Chamber or inside pipes/tanks).&lt;br /&gt;
&lt;br /&gt;
Distillation: Evaporate a single type of liquid from a mix by keeping the gas pressure above the other liquids &amp;quot;Vapor pressure&amp;quot; and below the &amp;quot;Vapor pressure&amp;quot; of the liquid that is being removed (performed with the Evaporation Chamber or Purge Valve). An issue with distillation is that some pressurant gas must stay behind to prevent the remaining liquid from evaporating.&lt;br /&gt;
&lt;br /&gt;
Separating a liquid from it&#039;s co-existing gas inside a liquid-pipe can be a bit tricky. This wiki author has only found three ways to do this, but there could be more.&lt;br /&gt;
&amp;lt;br&amp;gt;A) Use an Evaporation Chamber to move only the liquid, then use heat to get that liquid out of that Chamber, then cool it down to get the liquid back.&lt;br /&gt;
&amp;lt;br&amp;gt;B) Use an Evaporation Chamber with the handle on the front side open. This will dump all contents (liquids too) into the atmosphere around the Chamber. When this is done in a small (1x1x1) room, Passive Liquid Inlets can be used to recapture the dumped liquid.&lt;br /&gt;
&amp;lt;br&amp;gt;C) An Evaporation Valve can move just the liquid out, but only through a gas-pipe so it&#039;s very easy to damage that gas-pipe (unless using an exploit, see &amp;quot;Pipe damage&amp;quot; above).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Examples:&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;1) (condensation) The atmosphere on Mars contains CO2, N2, O2 and Pollutant. At day-time temperatures, only the Pollutant will be below its &amp;quot;Max liquid temperature&amp;quot; (152°C at 6MPa) so it&#039;s the only gas that can condense into a liquid. Pressurizing atmospheric gas collected during the day (to roughly 4MPa or above) will force all of the Pollutant to condensate into liquid, a Passive Liquid Drain can then remove that liquid. The remaining gases are now free from toxins and safe to use in a greenhouse without further purification.&lt;br /&gt;
&lt;br /&gt;
[[File:Phase change mars atmosphere.jpg|frameless]]&lt;br /&gt;
&lt;br /&gt;
2) (distillation) A liquid mix of N2O and Pollutant can be separated via a distillation that only evaporates the Pollutant. When comparing the &amp;quot;Vapor pressures&amp;quot; of N2O and Pollutant one can see that for each temperature the Pollutant will always have the higher &amp;quot;Vapor pressure&amp;quot; value. With a Purge Valve or Evaporation Chamber it&#039;s possible to keep the pressure above the N2O&#039;s &amp;quot;Vapor pressure&amp;quot; and below the Pollutants, which means that only the Pollutant will be able to evaporate. When all the liquid Pollutant has been removed, only Pollutant gas and liquid N2O will remain, remove just the liquid phase.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Dealing with extremely cold pipes==&lt;br /&gt;
When an AC is used for heating, its waste pipe can get extremely cold. The same goes for using passive Radiators on the Moon or on Mimas (keep the radiators exposed to sunlight to prevent the pipe temperature from getting too low). The best gas choice for cold pipes is Oxygen, since it is the hardest to liquify (-111°C at 6MPa), and all of it should (not properly tested!) turn into a liquid before it freezes into a solid. If the pipe pressure is above 6MPa the excess Oxygen will start to condense when the temperature dips to -111MPa. Attach a &amp;quot;Passive Liquid Drain&amp;quot; is a good way to protect the pipe, any liquid Oxygen will be removed from the pipe before it takes any damage. Instead of using pure Oxygen, crushed Oxite will do just fine, the Nitrogen will condense first and remove itself through the drain. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Heating / Cooling with phase change loops==&lt;br /&gt;
Since condensation increases the temperature and evaporation decreases the temperature, it&#039;s possible to build a loop where the gas-side becomes warmer and the liquid-side colder. The Condensation and Evaporation Chambers are good for this (note: a Purge Valve on the liquid-pipe between them is often necessary to prevent that pipe from breaking), but a phase change loop can also be made from pipes by using a Condensation Valve and a Purge Valve (set to 0kPa). By heating the colder liquid-side, or cooling the warmer gas-side, it&#039;s possible to keep the heating / cooling going.&lt;br /&gt;
&lt;br /&gt;
[[File:Phase Change Loop.jpg|frameless]]&lt;br /&gt;
&lt;br /&gt;
The performance of these loops seems moderate at best, but they consume less energy than an Air Conditioner. The efficiency has not been measured.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Examples of how to take advantage of phase changes==&lt;br /&gt;
1) Liquid tanks can be given a pressurant gas (like Oxygen) to prevent the liquid from evaporating. This will prevent any unwanted temperature changes from evaporation, and also makes it possible to remove every mol of the liquid from the tank.&lt;br /&gt;
&lt;br /&gt;
2) on Europa, use an Active Vent to pressurize atmospheric Oxygen in a pipe with a least one Passive Liquid Drain. The high pressure will result in condensation which will heat the remaining gas in the pipe up to -111°C (from around -145°C). This isn&#039;t much, but could potentially be used to reduce the energy needed to heat up atmospheric Oxygen to room temperature.&lt;br /&gt;
&lt;br /&gt;
3) on Mars, capture cold night-time atmospheric gas in a pipe with a small / moderate volume, preferably with a fast Powered Vent. Since only Pollutant and CO2 can phase-change into liquids below -8°C, both of these can be removed from the pipe via Passive liquid drains. The O2 and N2 however remains trapped inside. The condensation of CO2 will heat up the pipe (to -8°C), but if the temperature can be kept down the pipe will eventually contain a mix of just O2 and N2.&lt;br /&gt;
&lt;br /&gt;
4) on Vulcan, water-steam near the night-time temperature (127°C) can be cooled with a phase change loop. Heated steam will accumulate on the gas-pipe side, and cooler liquid will accumulate on the liquid-pipe side. Expelling the heat from the hot gas-pipe will keep the cooling going. Radiators are not ideal since they will pick up a lot of heat during the day, a heat-exchanger on the other hand can be deactivated which makes it better (by using an Active Vent to provide it atmospheric gas only during the night, and a One-way Valve to let those gases escape on their own).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Footnotes==&lt;br /&gt;
1) The Stationpedia says that all solids have 6.3kPa &amp;quot;Vapor Pressure&amp;quot;. But a crude experiment showed that slowly pumping in a gas (CO2) into a freezing cold room (8 grids of O2 at -149°C) did not result in a significant change in pressure (when accounting for the small increase in temperature caused by adding a warmer gas). The added gas (CO2) did not show up on a Handheld Tablet (nor a Gas Sensor or Pipe Analyzer with its own separate pipe), the only way to spot the presence of the invisible &amp;quot;gas&amp;quot; was by the small amount of ice that formed inside the passive vent used to insert it into the room. After a while some ice (CO2) fell to the floor, without resulting in any changes of pressure or temperature. Doing the reverse, placing ice into a freezing cold room, will not sublimate any of that ice into gas. Based on this, it seems that un-frozen &amp;quot;gas&amp;quot; have no actual &amp;quot;vapor pressure&amp;quot;, it will just invisibly accumulate until there is enough of it to form a lump of ice.&lt;br /&gt;
&lt;br /&gt;
2) from https://www.reddit.com/r/Stationeers/comments/171842v/gas_pipe_stress_calculations/&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Phase_Change_guide&amp;diff=18088</id>
		<title>Phase Change guide</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Phase_Change_guide&amp;diff=18088"/>
		<updated>2023-11-03T09:37:31Z</updated>

		<summary type="html">&lt;p&gt;Wark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;game version: 0.2.4297&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=Phase Change Update=&lt;br /&gt;
&lt;br /&gt;
In the Phase Change Update (july 2023) the 7 in-game gases (O2, N2, CO2, N2O, H2O, Volatiles and Pollutant) can now be in three different states; gas, liquid and solid. Gases and solids can exist by themselves, but a liquid will always co-exist with a gas (of any type). Phase changes are not instant, so it will take some time for them to stabilize.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How to read the in-game Stationpedia phase change diagrams==&lt;br /&gt;
[[File:Phase change keywords.jpg]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;&#039;Specific heat&#039;&#039;&#039; = the energy per mol required to change the temperature by 1°C of both gas and liquid states&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;&#039;Freezing temperature&#039;&#039;&#039; = where a gas or liquid turns into solid (this is dangerous to pipes)&lt;br /&gt;
&amp;lt;br&amp;gt;(unimportant) &#039;&#039;&#039;Boiling temperature&#039;&#039;&#039; = the temperature where the &amp;quot;Vapor pressure&amp;quot; is equal to 100kPa (slightly incorrect values)&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;&#039;Latent heat&#039;&#039;&#039; = the energy per mol that is released by condensation and consumed by evaporation&lt;br /&gt;
&amp;lt;br&amp;gt;(unimportant) &#039;&#039;&#039;Min Condensation Pressure&#039;&#039;&#039; = below this pressure a gas will not condense into liquid (allows gases to freeze into solids)&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;&#039;Max liquid temperature&#039;&#039;&#039; = a gas can&#039;t condense into liquid above this temperature (gas-pipes are safe from liquid damage)&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;&#039;Vapor pressure&#039;&#039;&#039; = (the pressure value given by the graph in the liquid / gas range, in real life solids can have a vapor pressure too) a liquid evaporates when below it, a gas condensates when above it&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Phase change graph.jpg]]&lt;br /&gt;
&lt;br /&gt;
The Stationpedia graphs are divided into 3 different regions. Solid-state to the left, liquid / gas -state in the middle and the gas-state on the right. The term &amp;quot;Vapor pressure&amp;quot; isn&#039;t mentioned but is the pressure value that is read from the graph in the liquid / gas temperature range. This value is not completely accurate however, comparing the graph to in-game pressures show that they are slightly off (see the picture above: the -111°C is actually at 6000kPa), but it&#039;s always close enough to be helpful.&lt;br /&gt;
&lt;br /&gt;
For &#039;&#039;&#039;solids&#039;&#039;&#039; the &amp;quot;Vapor pressure&amp;quot; is zero, even though the graph claims it to be 6.3 kPa (see footnote 1)&lt;br /&gt;
&lt;br /&gt;
For &#039;&#039;&#039;liquids&#039;&#039;&#039; the &amp;quot;Vapor pressure&amp;quot; is the pressure where a liquid will stop evaporating. This pressure doesn&#039;t have to come from the same type of gas, another gas can also provide that pressure. Oxygen, Nitrogen and Volatiles are all good pressurants because they have low values for &amp;quot;Max liquid temperature&amp;quot; which makes them hard to turn into liquids (which would contaminate the liquid they are pressurizing).&lt;br /&gt;
&lt;br /&gt;
For a &#039;&#039;&#039;gas&#039;&#039;&#039; with a temperature above the &amp;quot;Max liquid temperature&amp;quot; the &amp;quot;Vapor pressure&amp;quot; means nothing, because it&#039;s too hot to undergo any phase-changes in that range. But when the temperature drops below the &amp;quot;Max liquid temperature&amp;quot; (into the liquid / gas temperature range) the &amp;quot;Vapor pressure&amp;quot; becomes the lowest pressure required for a gas to start condensating. A gas can also turn into a solid (ice) directly without becoming a liquid first, this will happen if the temperature drops to the freezing point while the pressure of the gas is kept below the &amp;quot;Min Condensation Pressure&amp;quot;. Example: Carbondioxide has a &amp;quot;Min Condensation Pressure&amp;quot; of 517kPa (at -55°C) and freezes at -55°C, so below 517kPa that gas will turn directly into a solid with a broken pipe as the result, this makes carbondioxide a risky (=fun) choice as a coolant gas despite its high capacity for absorbing heat (due to its high specific heat value).&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Condensation&#039;&#039;&#039; is when a gas becomes liquid, this will release energy which increases the temperature.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Evaporation&#039;&#039;&#039; is when a liquid becomes gas, this will consume energy which decreases the temperature.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Freezing&#039;&#039;&#039; is when a gas or liquid becomes solid, this phase change does not appear to change the temperature. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Valve and Pump behaviour==&lt;br /&gt;
(incomplete list, there are other objects with gas/liquid connections that could potentially move liquids and gases in useful ways)&lt;br /&gt;
&lt;br /&gt;
Moves both gas and liquid&lt;br /&gt;
*Filtration unit&lt;br /&gt;
*Regulator&lt;br /&gt;
*Volume Pump&lt;br /&gt;
*Turbo Pump&lt;br /&gt;
*Valve&lt;br /&gt;
*One-way Valve&lt;br /&gt;
*Liquid Regulator&lt;br /&gt;
*Liquid Volume Pump&lt;br /&gt;
*Liquid Turbo Pump&lt;br /&gt;
*Liquid Valve&lt;br /&gt;
*Liquid One-way Valve&lt;br /&gt;
*Condensation Chamber (the gas-input)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Moves only gas&lt;br /&gt;
*Purge Valve (from liquid-pipes into gas-pipes)&lt;br /&gt;
*Pressurant Valve (from gas-pipes into liquid-pipes)&lt;br /&gt;
*Liquid Regulator with Setting = 0% (between liquid-pipes)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Moves only liquid&lt;br /&gt;
*Condensation Valve (from gas-pipes into liquid-pipes)&lt;br /&gt;
*Evaporation Valve (from liquid-pipes into gas-pipes)&lt;br /&gt;
*Evaporation Chamber (the liquid-input)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Liquid drain behaviour==&lt;br /&gt;
*Passive Liquid Drain (placed on gas-pipes, dumps liquids into the atmosphere)&lt;br /&gt;
*Active Liquid Outlet (dumps liquids from liquid-pipes into the atmosphere)&lt;br /&gt;
*Passive Liquid Inlet (works like a Passive Vent but for liquid-pipes, gases can enter/exit and atmospheric liquids can enter)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Pipe damage==&lt;br /&gt;
Gas pipes:&lt;br /&gt;
&amp;lt;br&amp;gt;Takes damage from liquids if the &amp;quot;stress&amp;quot; value goes above 100%. They also take damage if an unknown amount of liquids or gas freezes into a solid.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;Stress in % = 5000 x &amp;quot;liters of liquid&amp;quot; / &amp;quot;pipe network volume&amp;quot;&amp;lt;/code&amp;gt; (see footnote 2). &lt;br /&gt;
&lt;br /&gt;
Liquid pipes:&lt;br /&gt;
&amp;lt;br&amp;gt;Takes damage if the gas pressure goes above 6MPa, or if the liquid or gas freezes into a solid. The pipe volume is shared by both the gas and the liquid, so a liquid-pipe can become overpressurized by adding more liquid even though liquids themselves have no pressure.&lt;br /&gt;
&lt;br /&gt;
Exploit:&lt;br /&gt;
&amp;lt;br&amp;gt;Pipes inside double-welded frames will never take damage nor break from high pressure or stress. But they will still creak and moan.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Separating a mix of gases or a mix of liquids==&lt;br /&gt;
Filtration: Filtration units can separate both gases and liquids, but too much liquid will damage the gas-pipes (unless using an exploit, see &amp;quot;Pipe damage&amp;quot; above).&lt;br /&gt;
&lt;br /&gt;
Condensation: Condense a single type of gas into liquid from a gas mix when the temperature is below one of the gases &amp;quot;Max liquid temperature&amp;quot; and the pressure is above its &amp;quot;Vapor pressure&amp;quot; (performed in the Condensation Chamber or inside pipes/tanks).&lt;br /&gt;
&lt;br /&gt;
Distillation: Evaporate a single type of liquid from a mix by keeping the gas pressure above the other liquids &amp;quot;Vapor pressure&amp;quot; and below the &amp;quot;Vapor pressure&amp;quot; of the liquid that is being removed (performed with the Evaporation Chamber or Purge Valve). An issue with distillation is that some pressurant gas must stay behind to prevent the remaining liquid from evaporating.&lt;br /&gt;
&lt;br /&gt;
Separating a liquid from it&#039;s co-existing gas inside a liquid-pipe can be a bit tricky. This wiki author has only found three ways to do this, but there could be more.&lt;br /&gt;
&amp;lt;br&amp;gt;A) Use an Evaporation Chamber to move only the liquid, then use heat to get that liquid out of that Chamber, then cool it down to get the liquid back.&lt;br /&gt;
&amp;lt;br&amp;gt;B) Use an Evaporation Chamber with the handle on the front side open. This will dump all contents (liquids too) into the atmosphere around the Chamber. When this is done in a small (1x1x1) room, Passive Liquid Inlets can be used to recapture the dumped liquid.&lt;br /&gt;
&amp;lt;br&amp;gt;C) An Evaporation Valve can move just the liquid out, but only through a gas-pipe so it&#039;s very easy to damage that gas-pipe (unless using an exploit, see &amp;quot;Pipe damage&amp;quot; above).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Examples:&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;1) (condensation) The atmosphere on Mars contains CO2, N2, O2 and Pollutant. At day-time temperatures, only the Pollutant will be below its &amp;quot;Max liquid temperature&amp;quot; (152°C at 6MPa) so it&#039;s the only gas that can condense into a liquid. Pressurizing atmospheric gas collected during the day (to roughly 4MPa or above) will force all of the Pollutant to condensate into liquid, a Passive Liquid Drain can then remove that liquid. The remaining gases are now free from toxins and safe to use in a greenhouse without further purification.&lt;br /&gt;
&lt;br /&gt;
[[File:Phase change mars atmosphere.jpg|frameless]]&lt;br /&gt;
&lt;br /&gt;
2) (distillation) A liquid mix of N2O and Pollutant can be separated via a distillation that only evaporates the Pollutant. When comparing the &amp;quot;Vapor pressures&amp;quot; of N2O and Pollutant one can see that for each temperature the Pollutant will always have the higher &amp;quot;Vapor pressure&amp;quot; value. With a Purge Valve or Evaporation Chamber it&#039;s possible to keep the pressure above the N2O&#039;s &amp;quot;Vapor pressure&amp;quot; and below the Pollutants, which means that only the Pollutant will be able to evaporate. When all the liquid Pollutant has been removed, only Pollutant gas and liquid N2O will remain, remove just the liquid phase.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Dealing with extremely cold pipes==&lt;br /&gt;
When an AC is used for heating, its waste pipe can get extremely cold. The same goes for using passive Radiators on the Moon or on Mimas (keep the radiators exposed to sunlight to prevent the pipe temperature from getting too low). The best gas choice for cold pipes is Oxygen, since it is the hardest to liquify (-111°C at 6MPa), and all of it should (not properly tested!) turn into a liquid before it freezes into a solid. If the pipe pressure is above 6MPa the excess Oxygen will start to condense when the temperature dips to -111MPa. Attach a &amp;quot;Passive Liquid Drain&amp;quot; is a good way to protect the pipe, any liquid Oxygen will be removed from the pipe before it takes any damage. Instead of using pure Oxygen, crushed Oxite will do just fine, the Nitrogen will condense first and remove itself through the drain. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Heating / Cooling with phase change loops==&lt;br /&gt;
Since condensation increases the temperature and evaporation decreases the temperature, it&#039;s possible to build a loop where the gas-side becomes warmer and the liquid-side colder. The Condensation and Evaporation Chambers are good for this (note: a Purge Valve on the liquid-pipe between them is often necessary to prevent that pipe from breaking), but a phase change loop can also be made from pipes by using a Condensation Valve and a Purge Valve (set to 0kPa). By heating the colder liquid-side, or cooling the warmer gas-side, it&#039;s possible to keep the heating / cooling going.&lt;br /&gt;
&lt;br /&gt;
[[File:Phase Change Loop.jpg|frameless]]&lt;br /&gt;
&lt;br /&gt;
The performance of these loops seems moderate at best, but they consume less energy than an Air Conditioner. The efficiency has not been measured.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Examples of how to take advantage of phase changes==&lt;br /&gt;
1) Liquid tanks can be given a pressurant gas (like Oxygen) to prevent the liquid from evaporating. This will prevent any unwanted temperature changes from evaporation, and also makes it possible to remove every mol of the liquid from the tank.&lt;br /&gt;
&lt;br /&gt;
2) on Europa, use an Active Vent to pressurize atmospheric Oxygen in a pipe with a least one Passive Liquid Drain. The high pressure will result in condensation which will heat the remaining gas in the pipe up to -111°C (from around -145°C). This isn&#039;t much, but could potentially be used to reduce the energy needed to heat up atmospheric Oxygen to room temperature.&lt;br /&gt;
&lt;br /&gt;
3) on Mars, capture cold night-time atmospheric gas in a pipe with a small / moderate volume, preferably with a fast Powered Vent. Since only Pollutant and CO2 can phase-change into liquids below -8°C, both of these can be removed from the pipe via Passive liquid drains. The O2 and N2 however remains trapped inside. The condensation of CO2 will heat up the pipe (to -8°C), but if the temperature can be kept down the pipe will eventually contain a mix of just O2 and N2.&lt;br /&gt;
&lt;br /&gt;
4) on Vulcan, water-steam near the night-time temperature (127°C) can be cooled with a phase change loop. Heated steam will accumulate on the gas-pipe side, and cooler liquid will accumulate on the liquid-pipe side. Expelling the heat from the hot gas-pipe will keep the cooling going. Radiators are not ideal since they will pick up a lot of heat during the day, a heat-exchanger on the other hand can be deactivated which makes it better (by using an Active Vent to provide it atmospheric gas only during the night, and a One-way Valve to let those gases escape on their own).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Footnotes==&lt;br /&gt;
1) The Stationpedia says that all solids have 6.3kPa &amp;quot;Vapor Pressure&amp;quot;. But a crude experiment showed that slowly pumping in a gas (CO2) into a freezing cold room (8 grids of O2 at -149°C) did not result in a significant change in pressure (when accounting for the small increase in temperature caused by adding a warmer gas). The added gas (CO2) did not show up on a Handheld Tablet (nor a Gas Sensor or Pipe Analyzer with its own separate pipe), the only way to spot the presence of the invisible &amp;quot;gas&amp;quot; was by the small amount of ice that formed inside the passive vent used to insert it into the room. After a while some ice (CO2) fell to the floor, without resulting in any changes of pressure or temperature. Doing the reverse, placing ice into a freezing cold room, will not sublimate any of that ice into gas. Based on this, it seems that un-frozen &amp;quot;gas&amp;quot; have no actual &amp;quot;vapor pressure&amp;quot;, it will just invisibly accumulate until there is enough of it to form a lump of ice.&lt;br /&gt;
&lt;br /&gt;
2) from https://www.reddit.com/r/Stationeers/comments/171842v/gas_pipe_stress_calculations/&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Phase_Change_guide&amp;diff=18001</id>
		<title>Phase Change guide</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Phase_Change_guide&amp;diff=18001"/>
		<updated>2023-10-27T05:36:08Z</updated>

		<summary type="html">&lt;p&gt;Wark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;game version: 0.2.4297&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=Phase Change Update=&lt;br /&gt;
&lt;br /&gt;
In the Phase Change Update (july 2023) the 7 in-game gases (O2, N2, CO2, N2O, H2O, Volatiles and Pollutant) can now be in three different states; gas, liquid and solid. Gases and solids can exist by themselves, but a liquid will always co-exist with a gas (of any type). Phase changes are not instant, it will take some time for them to stabilize.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How to read the in-game Stationpedia phase change diagrams==&lt;br /&gt;
[[File:Phase change keywords.jpg]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;&#039;Specific heat&#039;&#039;&#039; = the energy per mol required to change the temperature by 1°C of both gas and liquid states&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;&#039;Freezing temperature&#039;&#039;&#039; = where a gas or liquid turns into solid (this will damage pipes!)&lt;br /&gt;
&amp;lt;br&amp;gt;(unimportant) &#039;&#039;&#039;Boiling temperature&#039;&#039;&#039; = the temperature where the &amp;quot;Vapor pressure&amp;quot; is equal to 100kPa (slightly incorrect values)&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;&#039;Latent heat&#039;&#039;&#039; = the energy per mol released by condensation and consumed by evaporation&lt;br /&gt;
&amp;lt;br&amp;gt;(unimportant) &#039;&#039;&#039;Min Condensation Pressure&#039;&#039;&#039; = below this pressure a gas will not condense into liquid (allows gases to freeze into solids)&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;&#039;Max liquid temperature&#039;&#039;&#039; = gas can&#039;t condense into liquid above this temperature (gas-pipes are safe from liquid damage)&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;&#039;Vapor pressure&#039;&#039;&#039; = (the pressure given by the graph) a liquid evaporates when below it, a gas condensates when above it&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Phase change graph.jpg]]&lt;br /&gt;
&lt;br /&gt;
The Stationpedia graphs are divided into 3 different regions. Solid-state to the left, liquid-state in the middle and the gas-state on the right. The term &amp;quot;Vapor pressure&amp;quot; isn&#039;t mentioned but is the pressure value that is read from the graph for any given temperature. This value is not completely accurate however, comparing the graph to in-game pressures show that they are slightly off, but it&#039;s close enough.&lt;br /&gt;
&lt;br /&gt;
For &#039;&#039;&#039;solids&#039;&#039;&#039; the &amp;quot;Vapor pressure&amp;quot; is actually zero, even though the graph claims it to be 6.3 kPa (see footnote 1)&lt;br /&gt;
&lt;br /&gt;
For &#039;&#039;&#039;liquids&#039;&#039;&#039; the &amp;quot;Vapor pressure&amp;quot; is the pressure where a liquid will stop evaporating. This pressure doesn&#039;t have to come from the same type of gas, another gas can also provide this pressure. Oxygen is the gas with the lowest value for &amp;quot;Max liquid temperature&amp;quot;, which makes it the hardest to liquidize (which would contaminate the liquid it&#039;s supposed to pressurize). This makes Oxygen ideal as a pressurant, but Nitrogen and Volatiles are almost as good so these can also be used.&lt;br /&gt;
&lt;br /&gt;
For a &#039;&#039;&#039;gas&#039;&#039;&#039; with a temperature above the &amp;quot;Max liquid temperature&amp;quot; the &amp;quot;Vapor pressure&amp;quot; means nothing, because it&#039;s too hot to undergo any phase-changes. But when the temperature drops below the &amp;quot;Max liquid temperature&amp;quot; the &amp;quot;Vapor pressure&amp;quot; is the lowest pressure required for a gas to start condensating. A gas can also turn into a solid (ice) directly without becoming a liquid first, this will happen if the temperature drops to the freezing point while the pressure of the gas is kept below the &amp;quot;Min Condensation Pressure&amp;quot;. This makes pipes with just gas vulnerable to freezing too.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Condensation&#039;&#039;&#039; is when a gas becomes liquid, this will release energy which increases the temperature.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Evaporation&#039;&#039;&#039; is when a liquid becomes gas, this will consume energy which decreases the temperature.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Freezing&#039;&#039;&#039; is when a gas or liquid becomes solid, this doesn&#039;t appear to change the temperature. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Valve and Pump behaviour==&lt;br /&gt;
(incomplete list, there are other objects with gas/liquid connections that could potentially move liquids and gases in useful ways)&lt;br /&gt;
&lt;br /&gt;
Moves both gas and liquid&lt;br /&gt;
*Filtration unit&lt;br /&gt;
*Regulator&lt;br /&gt;
*Volume Pump&lt;br /&gt;
*Turbo Pump&lt;br /&gt;
*Valve&lt;br /&gt;
*One-way Valve&lt;br /&gt;
*Liquid Regulator&lt;br /&gt;
*Liquid Volume Pump&lt;br /&gt;
*Liquid Turbo Pump&lt;br /&gt;
*Liquid Valve&lt;br /&gt;
*Liquid One-way Valve&lt;br /&gt;
*Condensation Chamber (the gas-input)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Moves only gas&lt;br /&gt;
*Purge Valve (from liquid-pipes into gas-pipes)&lt;br /&gt;
*Pressurant Valve (from gas-pipes into liquid-pipes)&lt;br /&gt;
*Liquid Regulator with Setting = 0% (between liquid-pipes)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Moves only liquid&lt;br /&gt;
*Condensation Valve (from gas-pipes into liquid-pipes)&lt;br /&gt;
*Evaporation Valve (from liquid-pipes into gas-pipes)&lt;br /&gt;
*Evaporation Chamber (the liquid-input)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Liquid drain behaviour==&lt;br /&gt;
*Passive Liquid Drain (placed on gas-pipes, dumps liquids into the atmosphere)&lt;br /&gt;
*Active Liquid Outlet (dumps liquids from liquid-pipes into the atmosphere)&lt;br /&gt;
*Passive Liquid Inlet (works like a Passive Vent but for liquid-pipes, gases can enter/exit and atmospheric liquids can enter)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Pipe damage==&lt;br /&gt;
Gas pipes:&lt;br /&gt;
&amp;lt;br&amp;gt;Takes damage from liquids if the &amp;quot;stress&amp;quot; value goes above 100%. They also take damage if an unknown amount of liquids or gas freezes into a solid.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;Stress in % = 5000 x &amp;quot;liters of liquid&amp;quot; / &amp;quot;pipe network volume&amp;quot;&amp;lt;/code&amp;gt; (see footnote 2). &lt;br /&gt;
&lt;br /&gt;
Liquid pipes:&lt;br /&gt;
&amp;lt;br&amp;gt;Takes damage if the gas pressure goes above 6MPa, or if the liquid or gas freezes into a solid. The pipe volume is shared by both the gas and the liquid, so a liquid-pipe can become overpressurized by adding more liquid even though liquids themselves have no pressure.&lt;br /&gt;
&lt;br /&gt;
Exploit:&lt;br /&gt;
&amp;lt;br&amp;gt;Pipes inside double-welded frames will never take damage nor break from high pressure or stress. But they will still creak and moan.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Separating a mix of gases or a mix of liquids==&lt;br /&gt;
Filtration units can separate both gases and liquids, but too much liquid will damage the gas-pipes (unless using an exploit to protect the pipes, see &amp;quot;Pipe damage&amp;quot; above).&lt;br /&gt;
&lt;br /&gt;
Condensation: Condense a single type of gas into liquid from a gas mix when the temperature is below one of the gases &amp;quot;Max liquid temperature&amp;quot; and the pressure is above its &amp;quot;Vapor pressure&amp;quot; (performed in the Condensation Chamber or inside pipes/tanks).&lt;br /&gt;
&lt;br /&gt;
Distillation: Evaporate a single type of liquid from a mix by keeping the gas pressure above the other liquids &amp;quot;Vapor pressure&amp;quot; and below the &amp;quot;Vapor pressure&amp;quot; of the liquid that is being removed (performed with the Evaporation Chamber or Purge Valve). An issue with distillation is that some pressurant gas must stay behind to prevent the remaining liquid from evaporating.&lt;br /&gt;
&lt;br /&gt;
Separating a liquid from it&#039;s co-existing gas inside a liquid-pipe can be a bit tricky. This wiki author has only found three ways to do this, but there could be more.&lt;br /&gt;
&amp;lt;br&amp;gt;A) Use an Evaporation Chamber to move only the liquid, then use heat to get that liquid out of that Chamber, then cool it down to get the liquid back.&lt;br /&gt;
&amp;lt;br&amp;gt;B) Use an Evaporation Chamber with the handle on the front side open. This will dump all contents (liquids too) into the atmosphere around the Chamber. When this is done in a small (1x1x1) room, Passive Liquid Inlets can be used to recapture the dumped liquid.&lt;br /&gt;
&amp;lt;br&amp;gt;C) An Evaporation Valve can move just the liquid out, but only through a gas-pipe so it&#039;s very easy to damage that gas-pipe (unless using an exploit, see &amp;quot;Pipe damage&amp;quot; above).&lt;br /&gt;
&amp;lt;br&amp;gt;(note to self: did I forget to test the Active Drain?)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Examples:&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;1) (condensation) The atmosphere on Mars contains CO2, N2, O2 and Pollutant. At day-time temperatures, only the Pollutant will be below its &amp;quot;Max liquid temperature&amp;quot; (152°C at 6MPa) so it&#039;s the only gas that can condense into a liquid. Pressurizing atmospheric gas collected during the day (to roughly 4MPa or above) will force all of the Pollutant to condensate into liquid, a Passive Liquid Drain can then remove that liquid. The remaining gases are now free from toxins and safe to use in a greenhouse without further purification.&lt;br /&gt;
&lt;br /&gt;
[[File:Phase change mars atmosphere.jpg|frameless]]&lt;br /&gt;
&lt;br /&gt;
2) (distillation) A liquid mix of N2O and Pollutant can be separated via a distillation that only evaporates the Pollutant. When comparing the &amp;quot;Vapor pressures&amp;quot; of N2O and Pollutant one can see that for each temperature the Pollutant will always have the higher &amp;quot;Vapor pressure&amp;quot; value. With a Purge Valve or Evaporation Chamber it&#039;s possible to keep the pressure above the N2O&#039;s &amp;quot;Vapor pressure&amp;quot; and below the Pollutants, which means that only the Pollutant will be able to evaporate. When all the liquid Pollutant has been removed, only Pollutant gas and liquid N2O will remain, remove just the liquid phase.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Dealing with extremely cold pipes==&lt;br /&gt;
When an AC is used for heating, its waste pipe can get extremely cold. The same goes for using passive Radiators on the Moon or on Mimas (keep the radiators exposed to sunlight to prevent the pipe temperature from getting too low). The best gas choice for cold pipes is Oxygen, since it is the hardest to liquify (-111°C at 6MPa), and all of it should (not properly tested!) turn into a liquid before it freezes into a solid. If the pipe pressure is above 6MPa the excess Oxygen will start to condense when the temperature dips to -111MPa. Attach a &amp;quot;Passive Liquid Drain&amp;quot; is a good way to protect the pipe, any liquid Oxygen will be removed from the pipe before it takes any damage. Instead of using pure Oxygen, crushed Oxite will do just fine, the Nitrogen will condense first and remove itself through the drain. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Heating / Cooling with phase change loops==&lt;br /&gt;
Since condensation increases the temperature and evaporation decreases the temperature, it&#039;s possible to build a loop where the gas-side becomes warmer and the liquid-side colder. The Condensation and Evaporation Chambers are good for this (note: a Purge Valve on the liquid-pipe between them is often necessary to prevent that pipe from breaking), but a phase change loop can also be made from pipes by using a Condensation Valve and a Purge Valve (set to 0kPa). By heating the colder liquid-side, or cooling the warmer gas-side, it&#039;s possible to keep the heating/cooling going.&lt;br /&gt;
&lt;br /&gt;
[[File:Phase Change Loop.jpg|frameless]]&lt;br /&gt;
&lt;br /&gt;
The performance of these loops seems moderate at best, but they consume less energy than an Air Conditioner. The efficiency has not been measured.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Examples of how to take advantage of phase changes==&lt;br /&gt;
1) Liquid tanks can be given a pressurant gas (like Oxygen) to prevent the liquid from evaporating. This will prevent any unwanted temperature changes from evaporation, and also makes it possible to remove every mol of the liquid from the tank.&lt;br /&gt;
&lt;br /&gt;
2) on Europa, use an Active Vent to pressurize atmospheric Oxygen in a pipe with a least one Passive Liquid Drain. The high pressure will result in condensation which will heat the remaining gas in the pipe up to -111°C (from around -145°C). This isn&#039;t much, but could potentially be used to reduce the energy needed to heat up atmospheric Oxygen to room temperature.&lt;br /&gt;
&lt;br /&gt;
3) on Mars, capture cold night-time atmospheric gas in a pipe with a small / moderate volume, preferably with a fast Powered Vent. Since only Pollutant and CO2 can phase-change into liquids below -8°C, both of these can be removed from the pipe via Passive liquid drains. The O2 and N2 however remains trapped inside. The condensation of CO2 will heat up the pipe (to -8°C), but if the temperature can be kept down the pipe will eventually contain a mix of just O2 and N2.&lt;br /&gt;
&lt;br /&gt;
4) on Vulcan, water-steam near the night-time temperature (127°C) can be cooled with a phase change loop. Heated steam will accumulate on the gas-pipe side, and cooler liquid will accumulate on the liquid-pipe side. Expelling the heat from the hot gas-pipe will keep the cooling going. Radiators are not ideal since they will pick up a lot of heat during the day, a heat-exchanger on the other hand can be deactivated which makes it better (by using an Active Vent to provide it atmospheric gas only during the night, and a One-way Valve to let those gases escape on their own).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Footnotes==&lt;br /&gt;
1) The Stationpedia says that all solids have 6.3kPa &amp;quot;Vapor Pressure&amp;quot;. But a crude experiment showed that slowly pumping in a gas (CO2) into a freezing cold room (8 grids of O2 at -149°C) did not result in a significant change in pressure (when accounting for the small increase in temperature caused by adding a warmer gas). The added gas (CO2) did not show up on a Handheld Tablet (nor a Gas Sensor or Pipe Analyzer with its own separate pipe), the only way to spot the presence of the invisible &amp;quot;gas&amp;quot; was by the small amount of ice that formed inside the passive vent used to insert it into the room. After a while some ice (CO2) fell to the floor, without resulting in any changes of pressure or temperature. Doing the reverse, placing ice into a freezing cold room, will not sublimate any of that ice into gas. Based on this, it seems that un-frozen &amp;quot;gas&amp;quot; have no actual &amp;quot;vapor pressure&amp;quot;, it will just invisibly accumulate until there is enough of it to form a lump of ice.&lt;br /&gt;
&lt;br /&gt;
2) from https://www.reddit.com/r/Stationeers/comments/171842v/gas_pipe_stress_calculations/&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Phase_Change_guide&amp;diff=17998</id>
		<title>Phase Change guide</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Phase_Change_guide&amp;diff=17998"/>
		<updated>2023-10-26T17:13:48Z</updated>

		<summary type="html">&lt;p&gt;Wark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;game version: 0.2.4297&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=Phase Change Update=&lt;br /&gt;
&lt;br /&gt;
In the Phase Change Update (july 2023) the 7 in-game gases (O2, N2, CO2, N2O, H2O, Volatiles and Pollutant) can now be in three different states; gas, liquid and solid. Gases and solids can exist by themselves, but a liquid will always co-exist with a gas (of any type). Phase changes are not instant, it will take some time for them to stabilize.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How to read the in-game Stationpedia phase change diagrams==&lt;br /&gt;
[[File:Phase change keywords.jpg]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;&#039;Specific heat&#039;&#039;&#039; = the energy per mol required to change the temperature by 1°C of both gas and liquid states&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;&#039;Freezing temperature&#039;&#039;&#039; = where a gas or liquid turns into solid (this will damage pipes!)&lt;br /&gt;
&amp;lt;br&amp;gt;(unimportant) &#039;&#039;&#039;Boiling temperature&#039;&#039;&#039; = the temperature where the &amp;quot;Vapor pressure&amp;quot; is equal to 100kPa (slightly incorrect values)&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;&#039;Latent heat&#039;&#039;&#039; = the energy per mol released by condensation and consumed by evaporation&lt;br /&gt;
&amp;lt;br&amp;gt;(unimportant) &#039;&#039;&#039;Min Condensation Pressure&#039;&#039;&#039; = below this pressure a gas will not condense into liquid (allows gases to freeze into solids)&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;&#039;Max liquid temperature&#039;&#039;&#039; = gas can&#039;t condense into liquid above this temperature (gas-pipes are safe from liquid damage)&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;&#039;Vapor pressure&#039;&#039;&#039; = (the pressure given by the graph) a liquid evaporates when below it, a gas condensates when above it&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Phase change graph.jpg]]&lt;br /&gt;
&lt;br /&gt;
The Stationpedia graphs are divided into 3 different regions. Solid-state to the left, liquid-state in the middle and the gas-state on the right. The term &amp;quot;Vapor pressure&amp;quot; isn&#039;t mentioned but is the pressure value that is read from the graph for any given temperature. This value is not completely accurate however, comparing the graph to in-game pressures show that they are slightly off, but it&#039;s close enough.&lt;br /&gt;
&lt;br /&gt;
For &#039;&#039;&#039;solids&#039;&#039;&#039; the &amp;quot;Vapor pressure&amp;quot; is actually zero, even though the graph claims it to be 6.3 kPa (see footnote 1)&lt;br /&gt;
&lt;br /&gt;
For &#039;&#039;&#039;liquids&#039;&#039;&#039; the &amp;quot;Vapor pressure&amp;quot; is the pressure where a liquid will stop evaporating. This pressure doesn&#039;t have to come from the same type of gas, another gas can also provide this pressure. Oxygen is the gas with the lowest value for &amp;quot;Max liquid temperature&amp;quot;, which makes it the hardest to liquidize (which would contaminate the liquid it&#039;s supposed to pressurize). This makes Oxygen ideal as a pressurant, but Nitrogen and Volatiles are almost as good so these can also be used.&lt;br /&gt;
&lt;br /&gt;
For a &#039;&#039;&#039;gas&#039;&#039;&#039; with a temperature above the &amp;quot;Max liquid temperature&amp;quot; the &amp;quot;Vapor pressure&amp;quot; means nothing, because it&#039;s too hot to undergo any phase-changes. But when the temperature drops below the &amp;quot;Max liquid temperature&amp;quot; the &amp;quot;Vapor pressure&amp;quot; is the lowest pressure required for a gas to start condensating. A gas can also turn into a solid (ice) directly without becoming a liquid first, this will happen if the temperature drops to the freezing point while the pressure of the gas is kept below the &amp;quot;Min Condensation Pressure&amp;quot;. This makes pipes with just gas vulnerable to freezing too.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Condensation&#039;&#039;&#039; is when a gas becomes liquid, this will release energy which increases the temperature.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Evaporation&#039;&#039;&#039; is when a liquid becomes gas, this will consume energy which decreases the temperature.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Freezing&#039;&#039;&#039; is when a gas or liquid becomes solid, this doesn&#039;t appear to change the temperature. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Valve and Pump behaviour==&lt;br /&gt;
(incomplete list, there are other objects with gas/liquid connections that could potentially move liquids and gases in useful ways)&lt;br /&gt;
&lt;br /&gt;
Moves both gas and liquid&lt;br /&gt;
*Filtration unit&lt;br /&gt;
*Regulator&lt;br /&gt;
*Volume Pump&lt;br /&gt;
*Turbo Pump&lt;br /&gt;
*Valve&lt;br /&gt;
*One-way Valve&lt;br /&gt;
*Liquid Regulator&lt;br /&gt;
*Liquid Volume Pump&lt;br /&gt;
*Liquid Turbo Pump&lt;br /&gt;
*Liquid Valve&lt;br /&gt;
*Liquid One-way Valve&lt;br /&gt;
*Condensation Chamber (the gas-input)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Moves only gas&lt;br /&gt;
*Purge Valve (from liquid-pipes into gas-pipes)&lt;br /&gt;
*Pressurant Valve (from gas-pipes into liquid-pipes)&lt;br /&gt;
*Liquid Regulator with Setting = 0% (between liquid-pipes)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Moves only liquid&lt;br /&gt;
*Condensation Valve (from gas-pipes into liquid-pipes)&lt;br /&gt;
*Evaporation Valve (from liquid-pipes into gas-pipes)&lt;br /&gt;
*Evaporation Chamber (the liquid-input)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Separating a liquid from it&#039;s co-existing gas inside a liquid-pipe can be a bit tricky, but it can still be desirable to do when these two are made from different compounds. When using an Evaporation Chamber to move just the liquid from a liquid-pipe, that liquid can leave the Chamber either by being evaporated as a gas (which requires energy) or by dumping it (as a liquid) into the surrounding atmosphere by opening the handle on the front of the Chamber. Dumping the liquid in a small 1x1x1 room allows Passive Liquid Inlets to capture it again. It&#039;s also possible to use an Evaporation Valve and route the liquid through a gas-pipe but this risks damaging that gas-pipe (unless using an exploit to protect the pipe, see &amp;quot;Pipe damage&amp;quot; below). Maybe there are other ways this wiki author doesn&#039;t know about yet.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Liquid drain behaviour==&lt;br /&gt;
*Passive Liquid Drain (placed on gas-pipes, dumps liquids into the atmosphere)&lt;br /&gt;
*Active Liquid Outlet (dumps liquids from liquid-pipes into the atmosphere)&lt;br /&gt;
*Passive Liquid Inlet (works like a Passive Vent but for liquid-pipes, gases can enter/exit and atmospheric liquids can enter)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Pipe damage==&lt;br /&gt;
Gas pipes:&lt;br /&gt;
&amp;lt;br&amp;gt;Takes damage from liquids if the &amp;quot;stress&amp;quot; value goes above 100%. They also take damage if an unknown amount of liquids or gas freezes into a solid.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;Stress in % = 5000 x &amp;quot;liters of liquid&amp;quot; / &amp;quot;pipe network volume&amp;quot;&amp;lt;/code&amp;gt; (see footnote 2). &lt;br /&gt;
&lt;br /&gt;
Liquid pipes:&lt;br /&gt;
&amp;lt;br&amp;gt;Takes damage if the gas pressure goes above 6MPa, or if the liquid or gas freezes into a solid. The pipe volume is shared by both the gas and the liquid, so a liquid-pipe can become overpressurized by adding more liquid even though liquids themselves have no pressure.&lt;br /&gt;
&lt;br /&gt;
Exploit:&lt;br /&gt;
&amp;lt;br&amp;gt;Pipes inside double-welded frames will never take damage nor break from high pressure or stress. But they will still creak and moan.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Separating a mix of gases or a mix of liquids==&lt;br /&gt;
Filtration units can separate both gases and liquids, but too much liquid will damage the gas-pipes (unless using an exploit to protect the pipes, see &amp;quot;Pipe damage&amp;quot; above).&lt;br /&gt;
&lt;br /&gt;
Condensation: Condense a single type of gas into liquid from a gas mix when the temperature is below one of the gases &amp;quot;Max liquid temperature&amp;quot; and the pressure is above its &amp;quot;Vapor pressure&amp;quot; (performed in the Condensation Chamber or inside pipes/tanks).&lt;br /&gt;
&lt;br /&gt;
Distillation: Evaporate a single type of liquid from a mix by keeping the gas pressure above the other liquids &amp;quot;Vapor pressure&amp;quot; and below the &amp;quot;Vapor pressure&amp;quot; of the liquid that is being removed (performed with the Evaporation Chamber or Purge Valve). An issue with distillation is that some pressurant gas must stay behind to prevent the remaining liquid from evaporating.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Examples:&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;1) (condensation) The atmosphere on Mars contains CO2, N2, O2 and Pollutant. At day-time temperatures, only the Pollutant will be below its &amp;quot;Max liquid temperature&amp;quot; (152°C at 6MPa) so it&#039;s the only gas that can condense into a liquid. Pressurizing atmospheric gas collected during the day (to roughly 4MPa or above) will force all of the Pollutant to condensate into liquid, a Passive Liquid Drain can then remove that liquid. The remaining gases are now free from toxins and safe to use in a greenhouse without further purification.&lt;br /&gt;
&lt;br /&gt;
[[File:Phase change mars atmosphere.jpg|frameless]]&lt;br /&gt;
&lt;br /&gt;
2) (distillation) A liquid mix of N2O and Pollutant can be separated via a distillation that only evaporates the Pollutant. When comparing the &amp;quot;Vapor pressures&amp;quot; of N2O and Pollutant one can see that for each temperature the Pollutant will always have the higher &amp;quot;Vapor pressure&amp;quot; value. With a Purge Valve or Evaporation Chamber it&#039;s possible to keep the pressure above the N2O&#039;s &amp;quot;Vapor pressure&amp;quot; and below the Pollutants, which means that only the Pollutant will be able to evaporate. When all the liquid Pollutant has been removed, only Pollutant gas and liquid N2O will remain. An Evaporation Valve can then be used to move just the liquid, but some engineering may be required to prevent pipe damage during this step.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Dealing with extremely cold pipes==&lt;br /&gt;
When an AC is used for heating, its waste pipe can get extremely cold. The same goes for using passive Radiators on the Moon or on Mimas (keep the radiators exposed to sunlight to prevent the pipe temperature from getting too low). The best gas choice for cold pipes is Oxygen, since it is the hardest to liquify (-111°C at 6MPa), and all of it should (not properly tested!) turn into a liquid before it freezes into a solid. If the pipe pressure is above 6MPa the excess Oxygen will start to condense when the temperature dips to -111MPa. Attach a &amp;quot;Passive Liquid Drain&amp;quot; is a good way to protect the pipe, any liquid Oxygen will be removed from the pipe before it takes any damage. Instead of using pure Oxygen, crushed Oxite will do just fine, the Nitrogen will condense first and remove itself through the drain. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Heating / Cooling with phase change loops==&lt;br /&gt;
Since condensation increases the temperature and evaporation decreases the temperature, it&#039;s possible to build a loop where the gas-side becomes warmer and the liquid-side colder. The Condensation and Evaporation Chambers are good for this (note: a Purge Valve on the liquid-pipe between them is often necessary to prevent that pipe from breaking), but a phase change loop can also be made from pipes by using a Condensation Valve and a Purge Valve (set to 0kPa). By heating the colder liquid-side, or cooling the warmer gas-side, it&#039;s possible to keep the heating/cooling going.&lt;br /&gt;
&lt;br /&gt;
[[File:Phase Change Loop.jpg|frameless]]&lt;br /&gt;
&lt;br /&gt;
The performance of these loops seems moderate at best, but they consume less energy than an Air Conditioner. The efficiency has not been measured.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Examples of how to take advantage of phase changes==&lt;br /&gt;
1) Liquid tanks can be given a pressurant gas (like Oxygen) to prevent the liquid from evaporating. This will prevent any unwanted temperature changes from evaporation, and also makes it possible to remove every mol of the liquid from the tank.&lt;br /&gt;
&lt;br /&gt;
2) on Europa, use an Active Vent to pressurize atmospheric Oxygen in a pipe with a least one Passive Liquid Drain. The high pressure will result in condensation which will heat the remaining gas in the pipe up to -111°C (from around -145°C). This isn&#039;t much, but could potentially be used to reduce the energy needed to heat up atmospheric Oxygen to room temperature.&lt;br /&gt;
&lt;br /&gt;
3) on Mars, capture cold night-time atmospheric gas in a pipe with a small / moderate volume, preferably with a fast Powered Vent. Since only Pollutant and CO2 can phase-change into liquids below -8°C, both of these can be removed from the pipe via Passive liquid drains. The O2 and N2 however remains trapped inside. The condensation of CO2 will heat up the pipe (to -8°C), but if the temperature can be kept down the pipe will eventually contain a mix of just O2 and N2.&lt;br /&gt;
&lt;br /&gt;
4) on Vulcan, water-steam near the night-time temperature (127°C) can be cooled with a phase change loop. Heated steam will accumulate on the gas-pipe side, and cooler liquid will accumulate on the liquid-pipe side. Expelling the heat from the hot gas-pipe will keep the cooling going. Radiators are not ideal since they will pick up a lot of heat during the day, a heat-exchanger on the other hand can be deactivated which makes it better (by using an Active Vent to provide it atmospheric gas only during the night, and a One-way Valve to let those gases escape on their own).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Footnotes==&lt;br /&gt;
1) The Stationpedia says that all solids have 6.3kPa &amp;quot;Vapor Pressure&amp;quot;. But a crude experiment showed that slowly pumping in a gas (CO2) into a freezing cold room (8 grids of O2 at -149°C) did not result in a significant change in pressure (when accounting for the small increase in temperature caused by adding a warmer gas). The added gas (CO2) did not show up on a Handheld Tablet (nor a Gas Sensor or Pipe Analyzer with its own separate pipe), the only way to spot the presence of the invisible &amp;quot;gas&amp;quot; was by the small amount of ice that formed inside the passive vent used to insert it into the room. After a while some ice (CO2) fell to the floor, without resulting in any changes of pressure or temperature. Doing the reverse, placing ice into a freezing cold room, will not sublimate any of that ice into gas. Based on this, it seems that un-frozen &amp;quot;gas&amp;quot; have no actual &amp;quot;vapor pressure&amp;quot;, it will just invisibly accumulate until there is enough of it to form a lump of ice.&lt;br /&gt;
&lt;br /&gt;
2) from https://www.reddit.com/r/Stationeers/comments/171842v/gas_pipe_stress_calculations/&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Main_Page&amp;diff=17995</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Main_Page&amp;diff=17995"/>
		<updated>2023-10-26T15:25:12Z</updated>

		<summary type="html">&lt;p&gt;Wark: added link to the &amp;quot;Phase Change guide&amp;quot; page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
    &amp;lt;!--T:10--&amp;gt;&lt;br /&gt;
    &amp;lt;div class=&amp;quot;row&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
       &amp;lt;!--T:11--&amp;gt;&lt;br /&gt;
       &amp;lt;div class=&amp;quot;small-12 column main-banner text-center&amp;quot;&amp;gt;&lt;br /&gt;
            [[Image:Wiki_home_banner.png|center|link=https://stationeers.com/]]&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;!--T:20--&amp;gt;&lt;br /&gt;
    &amp;lt;div class=&amp;quot;row&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
       &amp;lt;!--T:21--&amp;gt;&lt;br /&gt;
        &amp;lt;div class=&amp;quot;small-12 column&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;p&amp;gt;Welcome to [[Special:MyLanguage/Stationeers|Stationeers]] Unofficial Wiki.&amp;lt;br&amp;gt;&lt;br /&gt;
                [[Special:MyLanguage/Stationeers|Stationeers]] is being developed by RocketWerkz Ltd., directed by Dean &#039;rocket2guns&#039; Hall!&lt;br /&gt;
                To obtain your copy, go to https://stationeers.com or purchase Early Access on [http://store.steampowered.com/app/544550/Stationeers/ Steam].&amp;lt;br&amp;gt;&lt;br /&gt;
                &amp;lt;br&amp;gt;&lt;br /&gt;
                Keep in touch on [https://discordapp.com/invite/stationeers Discord] or [https://www.reddit.com/r/Stationeers/ Reddit].&lt;br /&gt;
            &amp;lt;/p&amp;gt;&lt;br /&gt;
                &amp;lt;p&amp;gt;&lt;br /&gt;
                &amp;lt;del&amp;gt;[https://stationeering.com/versions/recent Stationeers Version History]&amp;lt;/del&amp;gt;&lt;br /&gt;
            &amp;lt;/p&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;!--T:30--&amp;gt;&lt;br /&gt;
    &amp;lt;div class=&amp;quot;row&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;!--T:31--&amp;gt;&lt;br /&gt;
        &amp;lt;div class=&amp;quot;small-12 columns&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;h4 class=&amp;quot;subheader&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fa fa-tasks fa-lg&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;Guides&amp;lt;/h4&amp;gt;&lt;br /&gt;
            &amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;&#039;&#039;&#039;[[Special:MyLanguage/Beginner&#039;s Guide|Beginner&#039;s Guide]]&#039;&#039;&#039;&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;[[Special:MyLanguage/Guide (Airlock)|Guide (Airlock)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;[[Special:MyLanguage/Guide (Farming)|Guide (Farming)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;[[Special:MyLanguage/Technical Standards |Technical Standards]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                &amp;lt;/ul&amp;gt;&lt;br /&gt;
            &amp;lt;/div&amp;gt;&lt;br /&gt;
            &amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;[[Special:MyLanguage/Air_Filtration_System|Air Filtration System]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;[[Special:MyLanguage/Craftable items|List of all craftable items]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;[[Special:MyLanguage/Constructing and Deconstructing Walls|Constructing and Deconstructing Walls]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;[[Special:MyLanguage/Dedicated_Server_Guide|Dedicated server guide]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;[[SystemD_Server_Guide|Setting up a Linux dedicated server using SystemD]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;[[Special:MyLanguage/Starting Gear|Starting Gear]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;[[Special:MyLanguage/Guide_(Modding)|Modding the Game]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;[[Special:MyLanguage/Power_Tips_and_Tricks|Power Tips and Tricks for early game]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                &amp;lt;/ul&amp;gt;&lt;br /&gt;
            &amp;lt;/div&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;!--T:40--&amp;gt;&lt;br /&gt;
    &amp;lt;div class=&amp;quot;row&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;!--T:41--&amp;gt;&lt;br /&gt;
        &amp;lt;div class=&amp;quot;small-12 columns&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;h4 class=&amp;quot;subheader&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fa fa-book fa-lg&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;User Made Guides&amp;lt;/h4&amp;gt;&lt;br /&gt;
            &amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Cheat Sheets&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Research Tree]] (Wiki Page)&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[https://goo.gl/TsdqfM Silent1&#039;s Cheat Sheet] by silent1 (Reference sheet)&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Atmospheric Components Quick Reference]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Energy Storage Reference]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Tutorial&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[http://steamcommunity.com/sharedfiles/filedetails/?id=1230358763 Building your first base] by Sunspots (Steam Guide)&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[http://steamcommunity.com/sharedfiles/filedetails/?id=1230373894 Hardly&#039;s List of Lamentable Mistakes] by Hardly (Steam Guide)&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[http://steamcommunity.com/sharedfiles/filedetails/?id=1253687517 Tutorial Video Series] by Rhadamant (Steam Guide)&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Modding&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Adding new worlds]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Automation&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[https://stationeers-wiki.com/Auto_Night_Lights Auto Night Lights circuit] by DocRabbit (Wiki Guide)&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[https://stationeers-wiki.com/Simple_Arc_Furnace_Automation Simple Arc Furnace Automation] by itsjusty0gurt (Wiki Guide)&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[https://stationeers-wiki.com/Automated_Arc_Furnace Automated Arc Furnace] by JavaSkeptre (Wiki Guide)&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[https://stationeers-wiki.com/Automated_Coal_Generator Automated Coal Generator] by JavaSkeptre (Wiki Guide)&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[http://steamcommunity.com/sharedfiles/filedetails/?id=1251261186 Simple Stacker Automatisation] by Arran Chace (Steam Guide)&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[http://steamcommunity.com/sharedfiles/filedetails/?id=1232888907 Super Simple Autocycling Airlock] by Hardly (Steam Guide)&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[http://steamcommunity.com/sharedfiles/filedetails/?id=1231660909 Super Simple Steel Smelting] by Hardly (Steam Guide)&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[http://stationeers-wiki.com/Semi-Automatic_Autolathe Semi-Automatic Autolathe] by Korbah (Wiki Guide)&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[https://stationeers-wiki.com/Satellite_Tracking Automatic Satellite Tracking] by JedBolt (Wiki Guide)&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[https://stationeers-wiki.com/Easy_Auto_Arc_Furnace Easy Automated Arc Furnace] by Sarstan (Wiki Guide)&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Solar_Logic_Circuits_Guide|Solar Panel Control using Logic Gates]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[grow_light_automation|Simple logic automation of grow-light]]&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                &amp;lt;/ul&amp;gt;&lt;br /&gt;
            &amp;lt;/div&amp;gt;&lt;br /&gt;
            &amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Atmospherics&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[https://steamcommunity.com/sharedfiles/filedetails/?id=1283505695 25 Watt Passive Cooling Solution] By Amallore (Steam Guide)&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Automated Temperature Regulation]] by Jaffa (Wiki Guide)&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Basic Canister Mixing Setup]] by Viperel (Wiki Guide)&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Temperature independent fuel mixing]] by Wark (Wiki Guide)&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[http://steamcommunity.com/sharedfiles/filedetails/?id=1271148797 Canister handling made easy] by Gears (Steam Guide)&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[http://steamcommunity.com/sharedfiles/filedetails/?id=1232718432 HELP! My welder fuel is gone!] by Moomanji (Steam Guide)&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[http://steamcommunity.com/sharedfiles/filedetails/?id=1256512507 Logic Thermostat 20-25C] by Gears (Steam Guide)&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[http://steamcommunity.com/sharedfiles/filedetails/?id=1248037824 Pipe Regulators 101] by NugunsKnight (Steam Guide)&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[http://steamcommunity.com/sharedfiles/filedetails/?id=1245663146 Simple Gas Filtration System] by Wesir (Steam Guide)&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[https://steamcommunity.com/sharedfiles/filedetails/?id=1293043168 Thermostat or Filtration with Buffer] By Amallore (Steam Guide)&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[https://stationeers-wiki.com/Custom_Airlock_IC10 Custom Airlock with IC10] by JedBolt (Wiki Guide)&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Logic&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[https://steamcommunity.com/sharedfiles/filedetails/?id=2407406977 2 chip battery charge Display] by trucksarenoisy (Steam Guide)&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Always-on circuit guide|Always-On- / Auto-Restart- Circuit]] by Raumfahrtdoc (Wiki Guide)&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Advanced IC10 Programming]] by JedBolt (Wiki Guide)&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Dead Simple Light Switch]] by Evie Codes (Wiki Guide)&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[https://steamcommunity.com/workshop/filedetails/discussion/1517633472/1735465524705571551/ How to use IC scripts from the workshop] By DirtyRat (Steam Guide)&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Logic Pulse Former]] by Evie Codes (Wiki Guide)&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Timing Circuit|Timer circuit]] by MrBigras (Wiki Guide)&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[http://steamcommunity.com/sharedfiles/filedetails/?id=1236169037 Slightly-Less-Simple Logic Units] by Hardly (Steam Guide)&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[https://steamcommunity.com/sharedfiles/filedetails/?id=1536155985 The ultimate power display] by adamkk03 (Steam Guide)&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[https://steamcommunity.com/sharedfiles/filedetails/?id=2356339571 Weather Station Guide] by Applesauce (Steam Guide)&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Math&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Pressure, Volume, Quantity, and Temperature]] by Micro&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Furnace temperature and pressure math]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Phase Changes&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Phase Change guide|Phase Change guide]] by Wark (Wiki Guide)&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                &amp;lt;/ul&amp;gt;&lt;br /&gt;
            &amp;lt;/div&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;!--T:49--&amp;gt;&lt;br /&gt;
    &amp;lt;div class=&amp;quot;row&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;div class=&amp;quot;large-4 medium-6 columns&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;h3 class=&amp;quot;subheader&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fa fa-cubes fa-lg&amp;quot; style=&amp;quot;display:inline;&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;Worlds&amp;lt;/h3&amp;gt;&lt;br /&gt;
            &amp;lt;div class=&amp;quot;medium-6 columns&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;[[Worlds]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Europa]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Mars]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Moon]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Venus]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                &amp;lt;/ul&amp;gt;&lt;br /&gt;
            &amp;lt;/div&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;!--T:50--&amp;gt;&lt;br /&gt;
    &amp;lt;div class=&amp;quot;row&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;!--T:51--&amp;gt;&lt;br /&gt;
        &amp;lt;div class=&amp;quot;large-4 medium-6 columns&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;h3 class=&amp;quot;subheader&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fa fa-cubes fa-lg&amp;quot; style=&amp;quot;display:inline;&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;Ores&amp;lt;/h3&amp;gt;&lt;br /&gt;
            &amp;lt;div class=&amp;quot;medium-6 columns&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;[[Special:MyLanguage/Ores|Ores]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Ore (Cobalt)|Cobalt]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Ore (Copper)|Copper]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Ore (Gold)|Gold]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Ore (Iron)|Iron]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Ore (Lead)|Lead]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Ore (Nickel)|Nickel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Ore (Silicon)|Silicon]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Ore (Silver)|Silver]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Reagent Mix|Reagent Mix]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                &amp;lt;/ul&amp;gt;&lt;br /&gt;
            &amp;lt;/div&amp;gt;&lt;br /&gt;
            &amp;lt;div class=&amp;quot;medium-6 columns&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Solid Fuels&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Ore (Coal)|Coal]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Ore (Uranium)|Uranium]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Charcoal|Charcoal]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                &amp;lt;/ul&amp;gt;&lt;br /&gt;
            &amp;lt;/div&amp;gt;&lt;br /&gt;
            &amp;lt;div class=&amp;quot;medium-6 columns&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Frozen Gases&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Ice (Oxite)|Oxite]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Ice (Volatiles)|Volatiles]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Ice (Water)|Water]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Ice (Nitrice)|Nitrice]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                &amp;lt;/ul&amp;gt;&lt;br /&gt;
            &amp;lt;/div&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;!--T:52--&amp;gt;&lt;br /&gt;
        &amp;lt;div class=&amp;quot;large-4 medium-6 columns&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;h3 class=&amp;quot;subheader&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fa fa-filter fa-lg&amp;quot; style=&amp;quot;display:inline;&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;Ingots&amp;lt;/h3&amp;gt;&lt;br /&gt;
            &amp;lt;div class=&amp;quot;medium-6 columns&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Basic&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Ingot (Copper)|Copper]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;&amp;lt;del&amp;gt;[[Special:MyLanguage/Ingot (Cobalt)|Cobalt]]&amp;lt;/del&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Ingot (Gold)|Gold]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Ingot (Iron)|Iron]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Ingot (Lead)|Lead]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Ingot (Nickel)|Nickel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Ingot (Silicon)|Silicon]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Ingot (Silver)|Silver]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Fuel&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[ItemSolidFuel|Solid Fuel (Hydrocarbon)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                &amp;lt;/ul&amp;gt;&lt;br /&gt;
            &amp;lt;/div&amp;gt;&lt;br /&gt;
            &amp;lt;div class=&amp;quot;medium-6 columns&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Alloys&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Ingot (Constantan)|Constantan]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Ingot (Electrum)|Electrum]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Ingot (Invar)|Invar]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Ingot (Solder)|Solder]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Ingot (Steel)|Steel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Superalloys&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Ingot (Astroloy)|Astroloy]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Ingot (Hastelloy)|Hastelloy]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Ingot (Inconel)|Inconel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Ingot (Stellite)|Stellite]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Ingot (Waspaloy)|Waspaloy]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                &amp;lt;/ul&amp;gt;&lt;br /&gt;
            &amp;lt;/div&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;!--T:53--&amp;gt;&lt;br /&gt;
        &amp;lt;div class=&amp;quot;large-4 medium-6 columns&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;h3 class=&amp;quot;subheader&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fa fa-spinner fa-lg&amp;quot; style=&amp;quot;display:inline;&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;Substances &amp;amp; Mixtures&amp;lt;/h3&amp;gt;&lt;br /&gt;
            &amp;lt;div class=&amp;quot;medium-5 columns&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Elements&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Hydrogen|Hydrogen (H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Nitrogen|Nitrogen (N&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Oxygen|Oxygen (O&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Pollutant|Pollutants (X)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Volatiles|Volatiles]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                &amp;lt;/ul&amp;gt;&lt;br /&gt;
            &amp;lt;/div&amp;gt;&lt;br /&gt;
            &amp;lt;div class=&amp;quot;medium-7 columns&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Compounds&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Carbon Dioxide|Carbon Dioxide (CO&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Nitrous Oxide|Nitrous Oxide (N&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;O)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Water|Water (H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;O)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                &amp;lt;/ul&amp;gt;&lt;br /&gt;
                &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Mixtures&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Fuel|Fuel (66.6% H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt; + 33.3% O&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Air|Air (75% N&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt; + 25% O&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                &amp;lt;/ul&amp;gt;&lt;br /&gt;
            &amp;lt;/div&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;!--T:60--&amp;gt;&lt;br /&gt;
    &amp;lt;div class=&amp;quot;row&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;!--T:61--&amp;gt;&lt;br /&gt;
        &amp;lt;div class=&amp;quot;large-4 medium-6 columns&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;h3 class=&amp;quot;subheader&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fa fa-wrench fa-lg&amp;quot; style=&amp;quot;display:inline;&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;Hand Tools&amp;lt;/h3&amp;gt;&lt;br /&gt;
            &amp;lt;div class=&amp;quot;medium-6 columns&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Construction&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Arc Welder|Arc Welder]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Angle Grinder|Angle Grinder]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;&amp;lt;del&amp;gt;[[Special:MyLanguage/Authoring Tool|Authoring Tool]]&amp;lt;/del&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Crowbar|Crowbar]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Data Disk|Data Disk]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Hand Drill|Hand Drill]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Screwdriver|Screwdriver]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Spray Paint|Spray Paint]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Welding Torch|Welding Torch]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Wire Cutters|Wire Cutters]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;&amp;lt;del&amp;gt;[[Special:MyLanguage/Wreckage Constructor|Wreckage Constructor]]&amp;lt;/del&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Wrench|Wrench]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Mining&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Dirt Canister|Dirt Canister]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Ground Penetrating Radar|Ground Penetrating Radar]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Mining Drill|Mining Drill]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Mining Drill (Heavy)|Mining Drill (Heavy)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Pickaxe|Pickaxe]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Terrain Manipulator|Terrain Manipulator]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Location Markers&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;&amp;lt;del&amp;gt;[[Special:MyLanguage/Chem Light|Chem Light]]&amp;lt;/del&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Small Flag)|Small Flag]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Road Flare|Road Flare]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Tracking Beacon|Tracking Beacon]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                &amp;lt;/ul&amp;gt;&lt;br /&gt;
            &amp;lt;/div&amp;gt;&lt;br /&gt;
            &amp;lt;div class=&amp;quot;medium-6 columns&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Others&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Duct Tape|Duct Tape]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Fire Extinguisher|Fire Extinguisher]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Handheld Tablet|Handheld Tablet]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Advanced Tablet|Advanced Tablet]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;&amp;lt;del&amp;gt;[[Special:MyLanguage/Handheld Scanner|Handheld Scanner]]&amp;lt;/del&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Labeller|Labeller ]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Portable Light|Portable Light]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;&amp;lt;del&amp;gt;[[Special:MyLanguage/Space Cleaner|Space Cleaner]]&amp;lt;/del&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Weapons&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Ammo_Box|Ammo Box]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Energy Pistol|Energy Pistol]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Energy Rifle|Energy Rifle]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Fire Arm SMG|Fire Arm SMG]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Hand Grenade|Hand Grenade]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Handgun|Handgun]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Handgun Magazine|Handgun Magazine]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Lightsword|Lightsword]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Remote Detonator|Remote Detonator]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Remote Explosive|Remote Explosive]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/SMG Magazine|SMG Magazine]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                &amp;lt;/ul&amp;gt;&lt;br /&gt;
            &amp;lt;/div&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;!--T:62--&amp;gt;&lt;br /&gt;
        &amp;lt;div class=&amp;quot;large-2 medium-6 columns&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;h3 class=&amp;quot;subheader&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fa fa-tasks fa-lg&amp;quot; style=&amp;quot;display:inline;&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;Cartridges&amp;lt;/h3&amp;gt;&lt;br /&gt;
            &amp;lt;div class=&amp;quot;medium-12 columns&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;[[Special:MyLanguage/Cartridge|Cartridges]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Cartridge (Access Control)#Access_Control|Access Control]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Cartridge (Atmos Analyzer)#Atmos_Analyzer|Atmos Analyzer]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Cartridge (Configuration)#Configuration|Configuration]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Cartridge (eReader)#eReader|eReader]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Cartridge (GPS)#GPS|GPS]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Cartridge (Medical Analyzer)#Medical_Analyzer|Medical Analyzer]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Cartridge (Network Analyzer)#Network_Analyzer|Network Analyzer]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Cartridge (Ore Scanner)#Ore_Scanner|Ore Scanner]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Cartridge (Ore Scanner (Color))|Ore Scanner (Color)]]&amp;lt;/li&amp;gt;&amp;lt;!--Cannot have a proper hashtag directive to autoscroll to the content on cartridge page--&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Cartridge (Tracker)#Tracker|Tracker]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                &amp;lt;/ul&amp;gt;&lt;br /&gt;
            &amp;lt;/div&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;!--T:63--&amp;gt; &amp;lt;div class=&amp;quot;large-6 medium-6 columns&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;h3 class=&amp;quot;subheader&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fa fa-thermometer fa-lg&amp;quot; style=&amp;quot;display:inline;&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;Atmospherics&amp;lt;/h3&amp;gt;&lt;br /&gt;
            &amp;lt;div class=&amp;quot;medium-6 columns&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Pipes&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Pipe)|Pipe]]&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Liquid Pipe)|Liquid Pipe]]&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;[[Special:MyLanguage/Insulated Pipe|Insulated Pipe]]&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;[[Special:MyLanguage/Insulated Liquid Pipe|Insulated Liquid Pipe]]&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;[[Special:MyLanguage/Pipe Organ|Pipe Organ]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Pipe Label)|Pipe Label]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Vents&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Active Vent)|Active Vent]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Passive Vent)|Passive Vent]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Regulators&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Digital Valve)|Digital Valve]]&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;[[Special:MyLanguage/Liquid Digital Valve|Liquid Digital Valve]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Gas Mixer)|Gas Mixer]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Pipe Valve)|Pipe Valve]]&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Pipe Valve)|One Way Valve (Gas)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Liquid Pipe Valve)|Liquid Valve]]&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Liquid Pipe Valve)|One Way Valve (Liquid)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Pressure Regulator)|Pressure Regulator]]&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Liquid Regulator)|Liquid Pressure Regulator]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Pressure Regulator)|Back Pressure Regulator]]&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Liquid Regulator)|Liquid Back Pressure Regulator]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Volume Pump)|Volume Pump]]&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Turbo Volume Pump - Gas)|Turbo Volume Pump (Gas)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Liquid Volume Pump)|Liquid Volume Pump]]&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Turbo Volume Pump - Liquid)|Turbo Volume Pump (Liquid)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Radiators&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Radiator)|Radiator]]&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Liquid Pipe Radiator)|Liquid Pipe Radiator]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Wall Cooler)|Wall Cooler]]&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Liquid Wall Cooler)|Liquid Wall Cooler]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Wall Heater)|Wall Heater]]&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Heat Exchanger)|Heat Exchanger - Gas]]&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Heat Exchanger)|Heat Exchanger - Liquid]]&amp;lt;/li&amp;gt;&lt;br /&gt;
		        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Heat Exchanger)|Heat Exchanger - Liquid + Gas]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                &amp;lt;/ul&amp;gt;&lt;br /&gt;
            &amp;lt;/div&amp;gt;&lt;br /&gt;
            &amp;lt;div class=&amp;quot;medium-6 columns&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Processors&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Atmospherics)|Air Conditioner]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Atmospherics)|Electrolyzer]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Atmospherics)|Filtration]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Atmospherics)|H2 Combustor]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Portable Air Conditioner)|Portable Air Conditioner]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Portable Scrubber)|Portable Scrubber]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Ice Crusher)|Ice Crusher]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Analyzers&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Pipe Analyzer)|Pipe Analyzer]]&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;[[Special:MyLanguage/kit (Liquid Pipe Analyzer)|Liquid Pipe Analyzer]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Pipe Meter)|Pipe Meter]]&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;[[Special:MyLanguage/kit (Liquid Pipe Meter)|Liquid Pipe Meter]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&amp;lt;li&amp;gt;Storage&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Canister|Canister]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Gas Canister (Smart)|Gas Canister (Smart)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;[[Special:MyLanguage/Liquid Canister|Liquid Canister]]&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;[[Special:MyLanguage/Liquid Canister (Smart)|Liquid Canister Smart]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Canister Storage)|Canister Storage]]&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Liquid Tank Storage)|Liquid Tank Storage]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Portable Tank)|Portable Tank]]&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Portable Tank Mk2)|Portable Tank Mk2 (Empty)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Portable Liquid Tank)|Portable Liquid Tank (Empty)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Portable Liquid Tank Mk2)|Portable Liquid Tank Mk2 (Empty)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Tank)|Large Tank]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Tank)|Small Tank]]&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Liquid Tank Big)|Liquid Tank Big]]&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Liquid Tank Small)|Liquid Tank Small]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Tank Connector)|Tank Connector]]&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Liquid Tank Connector)|Liquid Tank Connector]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/(Kit) SDB Silo|SDB Silo]]&amp;lt;/li&amp;gt;				&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Filters&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Filter|Filter]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Heavy Filter|Heavy Filter]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Medium Filter|Medium Filter]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
		    &amp;lt;li&amp;gt;Other&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Liquid Drain)|Liquid Drain]]&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;[[Special:MyLanguage/Pipe Heater|Pipe Heater (Gas)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;[[Special:MyLanguage/Pipe Heater|Pipe Heater (Liquid)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
		    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                &amp;lt;/ul&amp;gt;&lt;br /&gt;
            &amp;lt;/div&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;!--T:70--&amp;gt;&lt;br /&gt;
    &amp;lt;div class=&amp;quot;row&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;!--T:71--&amp;gt;&lt;br /&gt;
        &amp;lt;div class=&amp;quot;large-4 medium-6 columns&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;h3 class=&amp;quot;subheader&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fa fa-cogs fa-lg&amp;quot; style=&amp;quot;display:inline;&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;Manufacturing&amp;lt;/h3&amp;gt;&lt;br /&gt;
            &amp;lt;div class=&amp;quot;medium-6 columns&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Fabricators&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Autolathe)|Autolathe]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Electronics Printer)|Electronics Printer]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Hydraulic Pipe Bender)|Hydraulic Pipe Bender]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Tool Manufactory)|Tool Manufactory]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Security Printer)|Security Printer]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Automated Oven)|Automated Oven]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Advanced Packaging Machine)|Automated Packaging Machine]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;&amp;lt;del&amp;gt;[[Special:MyLanguage/Kit (Fabricator)|Fabricator]]&amp;lt;/del&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;&amp;lt;del&amp;gt;[[Special:MyLanguage/Kit (Organics Printer)|Organics Printer]]&amp;lt;/del&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Fabricators (Tier Two)&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Autolathe (Tier Two)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Electronics Printer (Tier Two)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Hydraulic Pipe Bender (Tier Two)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Tool Manufactory (Tier Two)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Fabricators Mods&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Autolathe Printer Mod]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Electronic Printer Mod]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Pipe Bender Mod]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Tool Printer Mod]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Plant Fertilizers Production&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Portable Composter]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Advanced Composter]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                &amp;lt;/ul&amp;gt;&lt;br /&gt;
            &amp;lt;/div&amp;gt;&lt;br /&gt;
            &amp;lt;div class=&amp;quot;medium-6 columns&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Appliances&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Chemistry Station|Chemistry Station]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Microwave|Microwave]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Paint Mixer|Paint Mixer]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Reagent Processor|Reagent Processor]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Smelting&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Advanced Furnace)|Advanced Furnace]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Arc Furnace)|Arc Furnace]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Furnace)|Furnace]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Recycling&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Centrifuge)|Centrifuge]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Combustion Centrifuge|Combustion Centrifuge]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Recycler)|Recycler]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Regulators&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Chutes)|Chutes]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Conveyors)|Conveyors]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Sorter)|Sorter]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Stacker)|Stacker]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Vending Machine)|Vending Machine]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Vending Machine Refrigerated)|Vending Machine Refrigerated]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit_(SDB_Hopper)|SDB Hopper]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit_(SDB_Hopper)|SDB Hopper Advanced]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                   &amp;lt;/ul&amp;gt;&lt;br /&gt;
                &amp;lt;/ul&amp;gt;&lt;br /&gt;
            &amp;lt;/div&amp;gt;&lt;br /&gt;
       &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;!--T:72--&amp;gt;&lt;br /&gt;
        &amp;lt;div class=&amp;quot;medium-6 columns&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;h3 class=&amp;quot;subheader&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fa fa-building fa-lg&amp;quot; style=&amp;quot;display:inline;&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;Structure&amp;lt;/h3&amp;gt;&lt;br /&gt;
            &amp;lt;div class=&amp;quot;medium-4 columns&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Doors&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Airlock)|Airlock]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit_(Airlock_Gate)|Airlock Gate]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Blast Door)|Blast Door]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;&amp;lt;del&amp;gt;[[Special:MyLanguage/Kit (Docking Port)|Dock Port Side]]&amp;lt;/del&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;&amp;lt;del&amp;gt;[[Special:MyLanguage/Kit (Docking Port)|Dock Ship Side]]&amp;lt;/del&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Door)|Composite Door]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Door)|Composite Roll Cover]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Door)|Glass Door]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Mining&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Kit (Auto Miner Small)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Kit (OGRE)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[AIMEe]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Deep Miner]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Elevators&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Elevator)|Elevator Level]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Elevator)|Elevator Shaft]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Ladder)|Ladder]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Ladder)|Ladder End]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Ladder)|Ladder Platform]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Stairs)|Stairs]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Frames&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Iron Frames|Iron Frames]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Steel Frames|Steel Frames]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                &amp;lt;/ul&amp;gt;&lt;br /&gt;
            &amp;lt;/div&amp;gt;&lt;br /&gt;
            &amp;lt;div class=&amp;quot;medium-4 columns&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Floors &amp;amp; Walls&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;&amp;lt;del&amp;gt;[[Special:MyLanguage/Insulation|Insulation]]&amp;lt;/del&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Arched Wall)|Arched Wall]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Cladding)|Cladding]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Flat Wall)|Flat Wall]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Floor Grating)|Floor Grating]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Geometric Wall)|Geometric Wall]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Iron Walls)|Iron Walls]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Padded Wall)|Padded Wall]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Wall)|Wall]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Railing)|Industrial Railing]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Railing)|Elegant Railing]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Lights&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Flashing Light)|Flashing Light]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Lights)|Diode Slide]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Lights)|LED]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Lights)|Wall Light]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Lights)|Wall Light (Battery)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Lights)|Wall Light (Long)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Lights)|Wall Light (Long Angled)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Lights)|Wall Light (Long Wide)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Signs&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Sign)|Sign]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                &amp;lt;/ul&amp;gt;&lt;br /&gt;
            &amp;lt;/div&amp;gt;&lt;br /&gt;
            &amp;lt;div class=&amp;quot;medium-4 columns&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
                    &amp;lt;li&amp;gt;Sheets&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Glass Sheets|Glass Sheets]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Iron Sheets|Iron Sheets]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Plastic Sheets|Plastic Sheets]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Steel Sheets|Steel Sheets]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;&amp;lt;del&amp;gt;[[Special:MyLanguage/Astroloy Sheets|Astroloy Sheets]]&amp;lt;/del&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                &amp;lt;/ul&amp;gt;&lt;br /&gt;
            &amp;lt;/div&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;div class=&amp;quot;large-2 medium-6 columns&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;h3 class=&amp;quot;subheader&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fa fa-building fa-lg&amp;quot; style=&amp;quot;display:inline;&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;Vehicles&amp;lt;/h3&amp;gt;&lt;br /&gt;
            &amp;lt;div class=&amp;quot;medium-12 columns&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Rovers and Shuttles&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit_(Landing_Pad)|Landing Pad]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;&amp;lt;del&amp;gt;[[Special:MyLanguage/Kit (Rover Frame)|Rover (Cargo)]]&amp;lt;/del&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;&amp;lt;del&amp;gt;[[Special:MyLanguage/Kit (Rover Mk I)|Rover (Mk I)]]&amp;lt;/del&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Lander|Lander]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;&amp;lt;del&amp;gt;[[Special:MyLanguage/Robot|Robot]]&amp;lt;/del&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Trader|Trader]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Modular Rocket&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Engine Large)|Engine Large]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Engine Medium)|Engine Medium]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Engine Small)|Engine Small]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;&amp;lt;del&amp;gt;[[Special:MyLanguage/Kit (Furniture)|Control Chair]]&amp;lt;/del&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;&amp;lt;del&amp;gt;[[Special:MyLanguage/Kit (Gyroscope)|Gyroscope]]&amp;lt;/del&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;&amp;lt;del&amp;gt;[[Special:MyLanguage/Kit (Stellar Anchor)|Stellar Anchor]]&amp;lt;/del&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;&amp;lt;del&amp;gt;[[Special:MyLanguage/Kit (Torpedo Launcher)|Torpedo Launcher]]&amp;lt;/del&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;&amp;lt;del&amp;gt;[[Special:MyLanguage/Kit (Turret)|Turret]]&amp;lt;/del&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Launch Pad)|Launch Pad]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Automated Rocket Automation)|Automation]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Modular Rocket Cargo)|Cargo]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Modular Rocket Command)|Command]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Automated Rocket Coupling)|Coupling]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Modular Rocket Engine)|Engine]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Modular Rocket Fueltank)|Fuel Tank]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Automated Rocket Ice Mining)|Ice Mining]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Automated Rocket Ore Mining)|Ore Mining]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Automated Rocket Salvage)|Salvage]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Automated Rocket Silo)|Silo]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                &amp;lt;/ul&amp;gt;&lt;br /&gt;
            &amp;lt;/div&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;!--T:80--&amp;gt;&lt;br /&gt;
    &amp;lt;div class=&amp;quot;row&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;!--T:81--&amp;gt;&lt;br /&gt;
        &amp;lt;div class=&amp;quot;large-2 medium-6 columns&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;h3 class=&amp;quot;subheader&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fa fa-cogs fa-lg&amp;quot; style=&amp;quot;display:inline;&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;Personal&amp;lt;/h3&amp;gt;&lt;br /&gt;
            &amp;lt;div class=&amp;quot;medium-12 columns&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Soft Suit&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/EVA Suit|EVA Suit]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Space Helmet|Space Helmet]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Spacepack|Spacepack]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Hard Suit&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Hardsuit|Hardsuit]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Hardsuit Backpack|Hardsuit Backpack]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Hardsuit Helmet|Hardsuit Helmet]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Hardsuit Jetpack|Hardsuit Jetpack]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Marine&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Marine Armor|Marine Armor]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Marine Helmet|Marine Helmet]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Uniforms&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Jump Suit (Orange)|Jump Suit (Orange)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Uniform Comander|Uniform Comander]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Marine Uniform|Marine Uniform]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Accessories&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Glasses|Glasses]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Night Vision Goggles|Night Vision Goggles]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Access Card|Access Card]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Credit Card|Credit Card]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Mining Belt|Mining Belt]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Tool Belt|Tool Belt]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Headwear&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Headlamp|Headlamp]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;&amp;lt;del&amp;gt;[[Special:MyLanguage/Hat|Hat]]&amp;lt;/del&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                &amp;lt;/ul&amp;gt;&lt;br /&gt;
            &amp;lt;/div&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;!--T:82--&amp;gt;&lt;br /&gt;
        &amp;lt;div class=&amp;quot;large-2 medium-6 columns&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;h3 class=&amp;quot;subheader&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fa fa-cogs fa-lg&amp;quot; style=&amp;quot;display:inline;&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;Power&amp;lt;/h3&amp;gt;&lt;br /&gt;
            &amp;lt;div class=&amp;quot;medium-12 columns&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Batteries&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Battery Cell (Large)|Battery Cell (Large)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Battery Cell (Nuclear)|Battery Cell (Nuclear)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Battery Cell (Small)|Battery Cell (Small)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Battery)|Stationary Battery]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Battery Large)|Stationary Battery Large]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Battery Charger)|Battery Charger]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Battery Charger Small|Battery Charger (Small)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Cables&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Cable Coil|Cable Coil]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Cable Coil (Heavy)|Cable Coil (Heavy)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Cable Analyser)|Cable Analyser]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Cable Fuses)|Cable Fuses]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Power Connector)|Power Connector]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Generators&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Gas Fuel Generator)|Gas Fuel Generator]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Portable Generator)|Portable Generator]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Solar Panel)|Solar Panel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Wind Turbine)|Wind Turbine]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Upright Wind Turbine|Upright Wind Turbine]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Solid Generator)|Solid Generator]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Stirling Engine|Stirling Engine]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Portable Solar Panel|Portable Solar Panel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;&amp;lt;del&amp;gt;[[Special:MyLanguage/RTG|RTG]]&amp;lt;/del&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Regulators&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Power Controller)|Power Controller]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/PowerTransmitter|Power Transmitter]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Transformer)|Transformer]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Transformer Small)|Transformer Small]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                &amp;lt;/ul&amp;gt;&lt;br /&gt;
            &amp;lt;/div&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;!--T:83--&amp;gt;&lt;br /&gt;
        &amp;lt;div class=&amp;quot;large-8 medium-4 columns&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;h3 class=&amp;quot;subheader&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fa fa-cogs fa-lg&amp;quot; style=&amp;quot;display:inline;&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;Electronics&amp;lt;/h3&amp;gt;&lt;br /&gt;
            &amp;lt;div class=&amp;quot;medium-4 columns&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;[[Special:MyLanguage/Circuitboard|Circuitboards]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Circuitboard (Advanced Airlock)|Advanced Airlock]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Circuitboard (Air Control)|Air Control]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Circuitboard (Airlock)|Airlock]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;&amp;lt;del&amp;gt;[[Special:MyLanguage/Circuitboard (Camera Display)|Camera Display]]&amp;lt;/del&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Circuitboard (Door Control)|Door Control]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Circuitboard (Gas Display)|Gas Display]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Circuitboard (Graph Display)|Graph Display]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Circuitboard (Hash  Display)|Hash Display]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Circuitboard (Mode Control)|Mode Control]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Circuitboard (Power Control)|Power Control]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Circuitboard (Ship Display)|Ship Display]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Circuitboard (Solar Control)|Solar Control]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;[[Special:MyLanguage/Integrated Circuit|Integrated Circuits]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Integrated Circuit (IC10)|Integrated Circuit (IC10)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (IC Housing)|IC Housing]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Consoles)|Consoles]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Consoles)|Console]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Consoles)|Console Dual]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Consoles)|Console Monitor]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Consoles)|LED Display]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                &amp;lt;/ul&amp;gt;&lt;br /&gt;
            &amp;lt;/div&amp;gt;&lt;br /&gt;
            &amp;lt;div class=&amp;quot;medium-4 columns&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Logic I/O)|Logic I/O&#039;s]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Logic I/O)|Batch Reader]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Logic I/O)|Batch Slot Reader]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Logic I/O)|Batch Writer]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Logic I/O)|Logic Mirror]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Logic I/O)|Logic Writer Switch]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Logic I/O)|Reader]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Logic I/O)|Reagent Reader]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Logic I/O)|Slot Reader]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Logic I/O)|Writer]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Logic Memory)|Logic Memory]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Logic Memory)|Hash Generator]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Logic Memory)|Logic Memory]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Logic Processor)|Logic Processors]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Logic Processor)|Logic Compare]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Logic Processor)|Logic Math]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Logic Processor)|Logic Min/Max]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Logic Processor)|Logic Select]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Logic Processor)|Math Unary]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Logic Switch)|Logic Switches]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Logic Switch)|Button]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Logic Switch)|Dial]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Logic Switch)|Lever]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Logic Switch)|Switch]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit_(Logic_Transmitter)|Logic Transmitters]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit_(Logic_Transmitter)|Logic Transmitter]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                &amp;lt;/ul&amp;gt;&lt;br /&gt;
            &amp;lt;/div&amp;gt;&lt;br /&gt;
            &amp;lt;div class=&amp;quot;medium-4 columns&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;[[Special:MyLanguage/Motherboard|Motherboards]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Motherboard (Communications)|Communications]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Motherboard (IC Editor)|IC Editor]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Motherboard (Logic)|Logic]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;&amp;lt;del&amp;gt;[[Special:MyLanguage/Motherboard (Manufacturing)|Manufacturing]]&amp;lt;/del&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Motherboard (Sorter)|Sorter]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;[[Special:MyLanguage/Sensors|Sensors]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Sensors)|Daylight Sensor]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Sensors)|Gas Sensor]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Sensors)|Motion Sensor]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Trigger Plate)|Trigger Plate (Large)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Trigger Plate)|Trigger Plate (Medium)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Trigger Plate)|Trigger Plate (Small)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;&amp;lt;del&amp;gt;[[Special:MyLanguage/Security Camera|Security Camera]]&amp;lt;/del&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Others&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Beacon)|Beacon]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Computer)|Computer]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Laptop|Laptop]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Igniter)|Igniter]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Speaker)|Klaxon Speaker]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit_(Satellite_Dish)|Satellite Dish]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Weather Station)|Weather Station]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Electronic Parts]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                &amp;lt;/ul&amp;gt;&lt;br /&gt;
            &amp;lt;/div&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;!--T:90--&amp;gt;&lt;br /&gt;
    &amp;lt;div class=&amp;quot;row&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;!--T:91--&amp;gt;&lt;br /&gt;
        &amp;lt;div class=&amp;quot;large-4 medium-6 columns&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;h3 class=&amp;quot;subheader&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fa fa-cogs fa-lg&amp;quot; style=&amp;quot;display:inline;&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;Furniture&amp;lt;/h3&amp;gt;&lt;br /&gt;
            &amp;lt;div class=&amp;quot;medium-6 columns&amp;quot;&amp;gt;&lt;br /&gt;
               &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Entertainment&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;&amp;lt;del&amp;gt;[[Special:MyLanguage/Book|Book]]&amp;lt;/del&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Basket|Basket]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Basket Ball|Basket Ball]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Coffee_Mug|Coffee Mug]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;&amp;lt;del&amp;gt;[[Special:MyLanguage/Meteorite|Meteorite]]&amp;lt;/del&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Furniture)|Furniture]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Furniture)|Plinth]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Furniture)|Control Chair]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit_(Chairs)|Chairs]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit_(Tables)|Tables]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Powered Bench|Powered Bench]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Beds)|Bed]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Medical&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Cryo Tube)|Cryo Tube]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Sleeper)|Sleeper]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                &amp;lt;/ul&amp;gt;&lt;br /&gt;
            &amp;lt;/div&amp;gt;&lt;br /&gt;
            &amp;lt;div class=&amp;quot;medium-6 columns&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Storage&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;&amp;lt;del&amp;gt;[[Special:MyLanguage/Cardboard Box|Cardboard Box]]&amp;lt;/del&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Container Mount)|Container Mount]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Crate)|Crate]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Locker)|Locker]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Locker)|Locker (Small)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Suit Storage)|Suit Storage]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Fridge (Small)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Fridge (Large)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                &amp;lt;/ul&amp;gt;&lt;br /&gt;
            &amp;lt;/div&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;!--T:92--&amp;gt;&lt;br /&gt;
        &amp;lt;div class=&amp;quot;large-8 medium-4 columns&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;h3 class=&amp;quot;subheader&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fa fa-cogs fa-lg&amp;quot; style=&amp;quot;display:inline;&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;Farming, Plants, Animals &amp;amp; Foods&amp;lt;/h3&amp;gt;&lt;br /&gt;
            &amp;lt;div class=&amp;quot;medium-4 columns&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Animals&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;&amp;lt;del&amp;gt;[[Special:MyLanguage/Character Player|Character Player]]&amp;lt;/del&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Chick|Chick]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Chicken|Chicken]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Fertilized Egg|Fertilized Egg]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;&amp;lt;del&amp;gt;[[Special:MyLanguage/Grounder|Grounder]]&amp;lt;/del&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Skeleton|Skeleton]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                &amp;lt;/ul&amp;gt;&lt;br /&gt;
                &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Cooked Foods&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Baked Potato|Baked Potato]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Cereal Bar|Cereal Bar]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Bread Loaf|Bread Loaf]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Fries|Fries]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Milk|Milk]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Muffin|Muffin]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Pumpkin Pie|Pumpkin Pie]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Tomato Soup|Tomato Soup]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Pumpkin Soup|Pumpkin Soup]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Corn Soup|Corn Soup]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                &amp;lt;/ul&amp;gt;&lt;br /&gt;
            &amp;lt;/div&amp;gt;&lt;br /&gt;
            &amp;lt;div class=&amp;quot;medium-4 columns&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Ingredients&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Color Dye|Color Dye]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Egg|Egg]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Egg Carton|Egg Carton]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Flour|Flour]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Soy Oil|Soy Oil]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Empty Can|Empty Can]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Reagents&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Carbon Powder|Carbon Powder]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Cobalt Powder|Cobalt Powder]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Electrum Powder|Electrum Powder]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Fenoxitone Powder|Fenoxitone Powder]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Gold Powder|Gold Powder]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Invar Powder|Invar Powder]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Silver Powder|Silver Powder]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Medical&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Pill (Medical)|Pill (Medical)]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;&amp;lt;del&amp;gt;[[Special:MyLanguage/Pill (Stun)|Pill (Stun)]]&amp;lt;/del&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                &amp;lt;/ul&amp;gt;&lt;br /&gt;
            &amp;lt;/div&amp;gt;&lt;br /&gt;
            &amp;lt;div class=&amp;quot;medium-4 columns&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Hydroponics&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Automated Hydroponics)|Automated Hydroponics]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Hydroponics Station|Hydroponics Station]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Hydroponic Tray)|Hydroponic Tray]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Portable Hydroponics)|Portable Hydroponics]]&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Advanced Composter)|Advanced Composter]]&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;[[Special:MyLanguage/Portable Composter|Portable Composter]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Harvie)|Harvie]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Grow Light)|Grow Light]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Plants&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Alien Mushroom|Alien Mushroom]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Corn|Corn]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Fern|Fern]]s&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Flower|Flower]]s&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Mushroom|Mushroom]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Potato|Potato]]es&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Pumpkin|Pumpkin]]s&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Rice|Rice]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Soybean|Soybean]]s&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Tomato|Tomato]]es&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Wheat|Wheat]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Special:MyLanguage/Thermogenic plants|Thermogenic plants]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                   &amp;lt;/ul&amp;gt;&lt;br /&gt;
		   &amp;lt;li&amp;gt;Other&amp;lt;/li&amp;gt;&lt;br /&gt;
                   &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
		        &amp;lt;li&amp;gt;[[Special:MyLanguage/Kit (Planter)|Planter]]&amp;lt;/li&amp;gt;&lt;br /&gt;
	           &amp;lt;/ul&amp;gt;	&lt;br /&gt;
                &amp;lt;/ul&amp;gt;&lt;br /&gt;
            &amp;lt;/div&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;!--T:93--&amp;gt;&lt;br /&gt;
        &amp;lt;div class=&amp;quot;large-8 medium-4 columns&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;h3 class=&amp;quot;subheader&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fa fa-book fa-lg&amp;quot; style=&amp;quot;display:inline;&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;Lore&amp;lt;/h3&amp;gt;&lt;br /&gt;
            &amp;lt;div class=&amp;quot;medium-4 columns&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;li&amp;gt;Factions&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;ul style=&amp;quot;margin-left:8px;&amp;quot;&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Agrizero (Faction)|Agrizero]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Asura Biomedia (Faction)|Asura Biomedia]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[CHAC (Faction)|CHAC]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[ExMin (Faction)|ExMin]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[GeFabrik (Faction)|GeFabrik]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Hiiragi (Faction)|Hiiragi]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Norsec (Faction)|Norsec]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[ODA (Faction)|ODA]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Recurso Espaciais (Faction)|Recurso Espaciais]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Sinotai (Faction)|Sinotai]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[TK Systems (Faction)|TK Systems]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Xigo (Faction)|Xigo]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                        &amp;lt;li&amp;gt;[[Stationeers (Faction)|Stationeers]]&amp;lt;/li&amp;gt;&lt;br /&gt;
                    &amp;lt;/ul&amp;gt;&lt;br /&gt;
                &amp;lt;/ul&amp;gt;&lt;br /&gt;
            &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:100--&amp;gt;&lt;br /&gt;
__NOTOC__ __NOEDITSECTION__&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Phase_Change_guide&amp;diff=17994</id>
		<title>Phase Change guide</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Phase_Change_guide&amp;diff=17994"/>
		<updated>2023-10-26T15:07:15Z</updated>

		<summary type="html">&lt;p&gt;Wark: Created page with &amp;quot;&amp;#039;&amp;#039;game version: 0.2.4297&amp;#039;&amp;#039;  =Phase Change Update=  In the Phase Change Update the 7 in-game gases (O2, N2, CO2, N2O, H2O, Volatiles and Pollutant) can now be in three differen...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;game version: 0.2.4297&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=Phase Change Update=&lt;br /&gt;
&lt;br /&gt;
In the Phase Change Update the 7 in-game gases (O2, N2, CO2, N2O, H2O, Volatiles and Pollutant) can now be in three different states; gas, liquid and solid. Gases and solids can exist by themselves, but a liquid will always co-exist with a gas (of any type). Phase changes are not instant, it will take some time for them to reach their endpoint.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How to read the in-game Stationpedia phase change diagrams==&lt;br /&gt;
[[File:Phase change keywords.jpg]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;&#039;Specific heat&#039;&#039;&#039; = the energy per mol required to change the temperature by 1°C of both gas and liquid states&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;&#039;Freezing temperature&#039;&#039;&#039; = where a gas or liquid turns into solid (this will damage pipes!)&lt;br /&gt;
&amp;lt;br&amp;gt;(unimportant) &#039;&#039;&#039;Boiling temperature&#039;&#039;&#039; = the temperature where the &amp;quot;Vapor pressure&amp;quot; is equal to 100kPa (slightly incorrect values)&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;&#039;Latent heat&#039;&#039;&#039; = the energy per mol released by condensation and consumed by evaporation&lt;br /&gt;
&amp;lt;br&amp;gt;(unimportant) &#039;&#039;&#039;Min Condensation Pressure&#039;&#039;&#039; = below this pressure a gas will not condense into liquid (allows gases to freeze into solids)&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;&#039;Max liquid temperature&#039;&#039;&#039; = gas can&#039;t condense into liquid above this temperature (gas-pipes are safe from liquid damage)&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;&#039;Vapor pressure&#039;&#039;&#039; = (the pressure given by the graph) a liquid evaporates when below it, a gas condensates when above it&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Phase change graph.jpg]]&lt;br /&gt;
&lt;br /&gt;
The Stationpedia graphs are divided into 3 different regions. Solid-state to the left, liquid-state in the middle and the gas-state on the right. The term &amp;quot;Vapor pressure&amp;quot; isn&#039;t mentioned but is the pressure value that is read from the graph for any given temperature. This value is not completely accurate however, comparing the graph to in-game pressures show that they are slightly off, but it&#039;s close enough.&lt;br /&gt;
&lt;br /&gt;
For &#039;&#039;&#039;solids&#039;&#039;&#039; the &amp;quot;Vapor pressure&amp;quot; is actually zero, even though the graph claims it to be 6.3 kPa (see footnote 1)&lt;br /&gt;
&lt;br /&gt;
For &#039;&#039;&#039;liquids&#039;&#039;&#039; the &amp;quot;Vapor pressure&amp;quot; is the pressure where a liquid will stop evaporating. This pressure doesn&#039;t have to come from the same type of gas, another gas can also provide this pressure. Oxygen is the gas with the lowest value for &amp;quot;Max liquid temperature&amp;quot;, which makes it the hardest to liquidize (which would contaminate the liquid it&#039;s supposed to pressurize). This makes Oxygen ideal as a pressurant, but Nitrogen and Volatiles are almost as good so these can also be used.&lt;br /&gt;
&lt;br /&gt;
For a &#039;&#039;&#039;gas&#039;&#039;&#039; with a temperature above the &amp;quot;Max liquid temperature&amp;quot; the &amp;quot;Vapor pressure&amp;quot; means nothing, because it&#039;s too hot to undergo any phase-changes. But when the temperature drops below the &amp;quot;Max liquid temperature&amp;quot; the &amp;quot;Vapor pressure&amp;quot; is the lowest pressure required for a gas to start condensating. A gas can also turn into a solid (ice) directly without becoming a liquid first, this will happen if the temperature drops to the freezing point while the pressure of the gas is kept below the &amp;quot;Min Condensation Pressure&amp;quot;. This makes pipes with just gas vulnerable to freezing too.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Condensation&#039;&#039;&#039; is when a gas becomes liquid, this will release energy which increases the temperature.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Evaporation&#039;&#039;&#039; is when a liquid becomes gas, this will consume energy which decreases the temperature.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Freezing&#039;&#039;&#039; is when a gas or liquid becomes solid, this doesn&#039;t appear to change the temperature. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Valve and Pump behaviour==&lt;br /&gt;
(incomplete list, there are other objects with gas/liquid connections that could potentially move liquids and gases in useful ways)&lt;br /&gt;
&lt;br /&gt;
Moves both gas and liquid&lt;br /&gt;
*Filtration unit&lt;br /&gt;
*Regulator&lt;br /&gt;
*Volume Pump&lt;br /&gt;
*Turbo Pump&lt;br /&gt;
*Valve&lt;br /&gt;
*One-way Valves&lt;br /&gt;
*Liquid Regulator&lt;br /&gt;
*Liquid Volume Pump&lt;br /&gt;
*Liquid Turbo Pump&lt;br /&gt;
*Liquid Valve&lt;br /&gt;
*Liquid One-way Valve&lt;br /&gt;
*Condensation Chamber (the gas-input)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Moves only gas&lt;br /&gt;
*Purge Valve (from liquid-pipes into gas-pipes)&lt;br /&gt;
*Pressurant Valve (from gas-pipes into liquid-pipes)&lt;br /&gt;
*Liquid Regulator with Setting = 0% (between liquid-pipes)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Moves only liquid&lt;br /&gt;
*Condensation Valve (from gas-pipes into liquid-pipes)&lt;br /&gt;
*Evaporation Valve (from liquid-pipes into gas-pipes)&lt;br /&gt;
*Evaporation Chamber (the liquid-input)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Separating a liquid from it&#039;s co-existing gas inside a liquid-pipe can be a bit tricky, but it can still be desirable to do when these two are made from different compounds. When using an Evaporation Chamber to move just the liquid from a liquid-pipe, that liquid can leave the Chamber either by being evaporated as a gas (which requires energy) or by dumping it (as a liquid) into the surrounding atmosphere by opening the handle on the front of the Chamber. Dumping the liquid in a small 1x1x1 room allows Passive Liquid Inlets to capture it again. It&#039;s also possible to use an Evaporation Valve and route the liquid through a gas-pipe but this risks damaging that gas-pipe (unless using an exploit to protect the pipe, see &amp;quot;Pipe damage&amp;quot; below). Maybe there are other ways this wiki author doesn&#039;t know about yet.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Liquid drain behaviour==&lt;br /&gt;
*Passive Liquid Drain (placed on gas-pipes, dumps liquids into the atmosphere)&lt;br /&gt;
*Active Liquid Outlet (dumps liquids from liquid-pipes into the atmosphere)&lt;br /&gt;
*Passive Liquid Inlet (works like a Passive Vent but for liquid-pipes, gases can enter/exit and atmospheric liquids can enter)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Pipe damage==&lt;br /&gt;
Gas pipes:&lt;br /&gt;
&amp;lt;br&amp;gt;Takes damage from liquids if the &amp;quot;stress&amp;quot; value goes above 100%. They also take damage if an unknown amount of liquids or gas freezes into a solid.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;Stress in % = 5000 x &amp;quot;liters of liquid&amp;quot; / &amp;quot;pipe network volume&amp;quot;&amp;lt;/code&amp;gt; (see footnote 2). &lt;br /&gt;
&lt;br /&gt;
Liquid pipes:&lt;br /&gt;
&amp;lt;br&amp;gt;Takes damage if the gas pressure goes above 6MPa, or if the liquid or gas freezes into a solid. The pipe volume is shared by both the gas and the liquid, so a liquid-pipe can become overpressurized by adding more liquid even though liquids themselves have no pressure.&lt;br /&gt;
&lt;br /&gt;
Exploit:&lt;br /&gt;
&amp;lt;br&amp;gt;Pipes inside double-welded frames will never take damage nor break from high pressure or stress. But they will still creak and moan.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Separating a mix of gases or a mix of liquids==&lt;br /&gt;
Filtration units can separate both gases and liquids, but too much liquid will damage the gas-pipes (unless using an exploit to protect the pipes, see &amp;quot;Pipe damage&amp;quot; above).&lt;br /&gt;
&lt;br /&gt;
Condensation: Condense a single type of gas into liquid from a gas mix when the temperature is below one of the gases &amp;quot;Max liquid temperature&amp;quot; and the pressure is above its &amp;quot;Vapor pressure&amp;quot; (performed in the Condensation Chamber or inside pipes/tanks).&lt;br /&gt;
&lt;br /&gt;
Distillation: Evaporate a single type of liquid from a mix by keeping the gas pressure above the other liquids &amp;quot;Vapor pressure&amp;quot; and below the &amp;quot;Vapor pressure&amp;quot; of the liquid that is being removed (performed with the Evaporation Chamber or Purge Valve). An issue with distillation is that some pressurant gas must stay behind to prevent the remaining liquid from evaporating.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Examples:&lt;br /&gt;
&amp;lt;br&amp;gt;1) (condensation) The atmosphere on Mars contains CO2, N2, O2 and Pollutant. At day-time temperatures, only the Pollutant will be below its &amp;quot;Max liquid temperature&amp;quot; (152°C at 6MPa) so it&#039;s the only gas that can condense into a liquid. Pressurizing atmospheric gas collected during the day (to roughly 4MPa or above) will force all of the Pollutant to condensate into liquid, a Passive Liquid Drain can then remove that liquid. The remaining gases are now free from toxins and safe to use in a greenhouse without further purification.&lt;br /&gt;
&lt;br /&gt;
[[File:Phase change mars atmosphere.jpg|frameless]]&lt;br /&gt;
&lt;br /&gt;
2) (distillation) A liquid mix of N2O and Pollutant can be separated via a distillation that only evaporates the Pollutant. When comparing the &amp;quot;Vapor pressures&amp;quot; of N2O and Pollutant one can see that for each temperature the Pollutant will always have the higher &amp;quot;Vapor pressure&amp;quot; value. With a Purge Valve or Evaporation Chamber it&#039;s possible to keep the pressure above the N2O&#039;s &amp;quot;Vapor pressure&amp;quot; and below the Pollutants, which means that only the Pollutant will be able to evaporate. When all the liquid Pollutant has been removed, only Pollutant gas and liquid N2O will remain. An Evaporation Valve can then be used to move just the liquid, but some engineering may be required to prevent pipe damage during this step.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Dealing with extremely cold pipes==&lt;br /&gt;
When an AC is used for heating, its waste pipe can get extremely cold. The same goes for using passive Radiators on the Moon or on Mimas (keep the radiators exposed to sunlight to prevent the pipe temperature from getting too low). The best gas choice for cold pipes is Oxygen, since it is the hardest to liquify (-111°C at 6MPa), and all of it should (not properly tested!) turn into a liquid before it freezes into a solid. If the pipe pressure is above 6MPa the excess Oxygen will start to condense when the temperature dips to -111MPa. Attach a &amp;quot;Passive Liquid Drain&amp;quot; is a good way to protect the pipe, any liquid Oxygen will be removed from the pipe before it takes any damage. Instead of using pure Oxygen, crushed Oxite will do just fine, the Nitrogen will condense first and remove itself through the drain. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Heating/Cooling with phase change loops==&lt;br /&gt;
Since condensation increases the temperature and evaporation decreases the temperature, it&#039;s possible to build a loop where the gas-side becomes warmer and the liquid-side colder. The Condensation and Evaporation Chambers are good for this (note: a Purge Valve (set to 0 kPa) on the liquid-pipe between them is often necessary to prevent that pipe from breaking), but a phase change loop can also be made from pipes by using a Condensation Valve and a Purge Valve (set to 0kPa). By heating the colder liquid-side, or cooling the warmer gas-side, it&#039;s possible to keep the heating/cooling going.&lt;br /&gt;
&lt;br /&gt;
[[File:Phase Change Loop.jpg|frameless]]&lt;br /&gt;
&lt;br /&gt;
The performance of these loops seems moderate at best, but they consume less energy than an Air Conditioner. The efficiency has not been measured.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Examples of how to take advantage of phase changes==&lt;br /&gt;
1) Liquid tanks can be given a pressurant gas (like Oxygen) to prevent the liquid from evaporating. This will prevent any unwanted temperature changes from evaporation, and also makes it possible to remove every mol of the liquid from the tank.&lt;br /&gt;
&lt;br /&gt;
2) on Europa, use an Active Vent to pressurize atmospheric Oxygen in a pipe with a least one Passive Liquid Drain. The high pressure will result in condensation which will heat the remaining gas in the pipe up to -111°C (from around -145°C). This isn&#039;t much, but could potentially be used to reduce the energy needed to heat up atmospheric Oxygen to room temperature.&lt;br /&gt;
&lt;br /&gt;
3) on Mars, capture cold night-time atmospheric gas in a pipe with a small/moderate volume, preferably with a fast Powered Vent. Since only Pollutant and CO2 can phase-change into liquids below -8°C, both of these can be removed from the pipe via Passive liquid drains. The O2 and N2 however remains trapped inside. The condensation of CO2 will heat up the pipe (to -8°C), but if the temperature can be kept down the pipe will eventually contain a mix of just O2 and N2.&lt;br /&gt;
&lt;br /&gt;
4) on Vulcan, water-steam near the night-time temperature (127°C) can be cooled with a phase change loop. Heated steam will accumulate on the gas-pipe side, and cooler liquid will accumulate on the liquid-pipe side. Expelling the heat from the hot gas-pipe will keep the cooling going. Radiators are not ideal since they will pick up a lot of heat during the day, a heat-exchanger on the other hand can be deactivated which makes it better (by using an Active Vent to provide it atmospheric gas only during the night, and a One-way Valve to let those gases escape on their own).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Footnotes==&lt;br /&gt;
1) The Stationpedia says that all solids have 6.3kPa &amp;quot;Vapor Pressure&amp;quot;. But a crude experiment showed that slowly pumping in a gas (CO2) into a freezing cold room (8 grids of O2 at -149°C) did not result in a significant change in pressure (when accounting for the small increase in temperature caused by adding a warmer gas). The added gas (CO2) did not show up on a Handheld Tablet (nor a Gas Sensor or Pipe Analyzer with its own separate pipe), the only way to spot the presence of the invisible &amp;quot;gas&amp;quot; was by the small amount of ice that formed inside the passive vent used to insert it into the room. After a while some ice (CO2) fell to the floor, without resulting in any changes of pressure or temperature. Doing the reverse, placing ice into a freezing cold room, will not sublimate any of that ice into gas. Based on this, it seems that un-frozen &amp;quot;gas&amp;quot; have no actual &amp;quot;vapor pressure&amp;quot;, it will just invisibly accumulate until there is enough of it to form a lump of ice.&lt;br /&gt;
&lt;br /&gt;
2) from https://www.reddit.com/r/Stationeers/comments/171842v/gas_pipe_stress_calculations/&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=File:Phase_Change_Loop.jpg&amp;diff=17993</id>
		<title>File:Phase Change Loop.jpg</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=File:Phase_Change_Loop.jpg&amp;diff=17993"/>
		<updated>2023-10-26T14:50:37Z</updated>

		<summary type="html">&lt;p&gt;Wark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Phase change loop, the gas-pipe gets hotter and the liquid-pipe gets colder&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=File:Phase_change_mars_atmosphere.jpg&amp;diff=17992</id>
		<title>File:Phase change mars atmosphere.jpg</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=File:Phase_change_mars_atmosphere.jpg&amp;diff=17992"/>
		<updated>2023-10-26T14:47:50Z</updated>

		<summary type="html">&lt;p&gt;Wark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Phase change with martian atmosphere, where the pressure has liquified the Pollutant&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=File:Phase_change_graph.jpg&amp;diff=17991</id>
		<title>File:Phase change graph.jpg</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=File:Phase_change_graph.jpg&amp;diff=17991"/>
		<updated>2023-10-26T14:45:35Z</updated>

		<summary type="html">&lt;p&gt;Wark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Phase change diagram for Oxygen, with lables pointing out each phase&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=File:Phase_change_keywords.jpg&amp;diff=17990</id>
		<title>File:Phase change keywords.jpg</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=File:Phase_change_keywords.jpg&amp;diff=17990"/>
		<updated>2023-10-26T14:42:46Z</updated>

		<summary type="html">&lt;p&gt;Wark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Keywords above the phase change diagrams on the Stationpedia&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=IC10&amp;diff=13438</id>
		<title>IC10</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=IC10&amp;diff=13438"/>
		<updated>2022-10-21T22:56:25Z</updated>

		<summary type="html">&lt;p&gt;Wark: added a debug advice about labels&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:MIPS Programming]]&lt;br /&gt;
=MIPS scripting language for IC10 housings / chips=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Text after a # will be ignored to the end of the line. The amount of white&lt;br /&gt;
# space between arguments isn&#039;t important, but new lines start a new command.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Registers==&lt;br /&gt;
The IC contains 16 registers, numbered r0-r15. Think of these as variables in other programming languages. In fact, you can name them with the alias command (see below).&lt;br /&gt;
&lt;br /&gt;
To set a register directly (such as r0=2), use the &amp;lt;b&amp;gt;move&amp;lt;/b&amp;gt; command. To read a value from a device, use &amp;lt;b&amp;gt;l&amp;lt;/b&amp;gt; (load). To write a value back to a device, use &amp;lt;b&amp;gt;s&amp;lt;/b&amp;gt; (set). Note that&lt;br /&gt;
like most machine languages, the &amp;lt;i&amp;gt;destination&amp;lt;/i&amp;gt; goes first, so instructions always look like: action destination source.&lt;br /&gt;
&lt;br /&gt;
Here are some examples set a register, reading a value from a device and writing a value to device:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 10&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Sets register r0 to the value 10&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 r1&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Copies the value of register r1 to register r0&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r0 d0 Temperature&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Reads the Temperature parameter from device d0 and places the value in register r0.&lt;br /&gt;
Note: not all devices have a Temperature parameter, check the in-game stationpedia.&lt;br /&gt;
&lt;br /&gt;
To set a device specific value (like &amp;quot;On&amp;quot;), you can write into this value.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s d0 On r0&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Writes the value from register &#039;&#039;&#039;r0&#039;&#039;&#039; out to &#039;&#039;&#039;On&#039;&#039;&#039; parameter of device &#039;&#039;&#039;d0&#039;&#039;&#039;. In this example the device will be turned On, if valve of register r0 equals 1, otherwise (register r0 equals 0) it will turned off. See section [[MIPS#Device_Variables|Device Variables]].&lt;br /&gt;
&lt;br /&gt;
It&#039;s recommended to use labels (like: &#039;&#039;someVariable&#039;&#039;) instead of a direct reference to the register. See &#039;&#039;&#039;alias&#039;&#039;&#039; in section [[MIPS#Instructions|Instructions]].&lt;br /&gt;
&lt;br /&gt;
There are two more registers. One called &#039;&#039;&#039;ra&#039;&#039;&#039; (return address) and one called &#039;&#039;&#039;sp&#039;&#039;&#039; (stack pointer). The &#039;&#039;&#039;ra&#039;&#039;&#039; is used by certain jump and branching instructions (those ending with &#039;&#039;&#039;-al&#039;&#039;&#039;) to remember which line in the script it should return to. The &#039;&#039;&#039;sp&#039;&#039;&#039; tracks the next index within the stack (a memory that can store up to 512 values) to be pushed (written) to or popped (read) from. Neither &#039;&#039;&#039;ra&#039;&#039;&#039; or &#039;&#039;&#039;sp&#039;&#039;&#039; is protected, their values can be changed by instructions like any other register.&lt;br /&gt;
&lt;br /&gt;
==Device Ports==&lt;br /&gt;
ICs can interact with up to 6 other devices via d0 - d5, as well as the device it&#039;s attached to via db. To change or set a device, use a screwdriver and adjust the device in the IC housing. You can read or set any of the device&#039;s properties, so it is possible to do things like read the pressure or oxygen content of a room on the same Device port. &lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;l&#039;&#039;&#039; (load) or &#039;&#039;&#039;s&#039;&#039;&#039; (set) instructions you have to read or set these values to your device. Examples:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r0 d0 Temperature&amp;lt;/code&amp;gt; #Reads the &#039;&#039;&#039;Temperature&#039;&#039;&#039; from an atmosphere sensor at device port &#039;&#039;&#039;d0&#039;&#039;&#039; into register &#039;&#039;&#039;r0&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s d1 Setting r0 &amp;lt;/code&amp;gt; # Writes the value of the register &#039;&#039;&#039;r0&#039;&#039;&#039; to the device on port &#039;&#039;&#039;d1&#039;&#039;&#039; into the variable &#039;&#039;&#039;Setting&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
==Labels==&lt;br /&gt;
Labels are used to make it easier to jump between lines in the script. The label will have a numerical value that is the same as its line number. Even though it&#039;s possible to use a labels value for calculations, doing so is a bad idea since any changes to the code can change the line numbers of the labels.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;main:&amp;lt;/code&amp;gt; # define a jump mark with label &#039;&#039;&#039;main&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;j main&amp;lt;/code&amp;gt; # jumps back to &#039;&#039;&#039;main&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Constants==&lt;br /&gt;
Instead of using a register to store a fixed value, a constant can be made. Using this name will refer to the assigned value. With the help of Constants you can save register places.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;define pi 3.14159&amp;lt;/code&amp;gt; # defines a Constant with name &#039;&#039;&#039;pi&#039;&#039;&#039; and set it&#039;s value to 3.14159&lt;br /&gt;
&lt;br /&gt;
You can use these constants like any other variables (see: alias in section [[MIPS#Instructions|Instructions]]). Example:&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move r0 pi&amp;lt;/code&amp;gt; # set the value of register &#039;&#039;&#039;r0&#039;&#039;&#039; to the value of constant named &#039;&#039;&#039;pi&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
==Indirect referencing==&lt;br /&gt;
This is a way of accessing a register by using another register as a pointer. Adding an additional r infront of the register turns on this behaviour. The value stored in the register being used as the pointer must be between 0 to 15, this will then point to a register from r0 to r15, higher or lower values will cause an error.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 5&amp;lt;/code&amp;gt; stores the value 5 in r0&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move rr0 10&amp;lt;/code&amp;gt; is now the same as &amp;lt;code&amp;gt;move r5 10&amp;lt;/code&amp;gt; since r0 has the value 5, rr0 points at the register r5&lt;br /&gt;
&lt;br /&gt;
Additional r&#039;s can be added to do indirect referencing multiple times in a row.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move r1 2&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move r2 3&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move rrr1 4&amp;lt;/code&amp;gt; is now the same as &amp;lt;code&amp;gt;move r3 4&amp;lt;/code&amp;gt; since r1 points at r2 which points at r3&lt;br /&gt;
&lt;br /&gt;
This also works with devices&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move r0 2&amp;lt;/code&amp;gt; stores the value 2 in r0&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;s dr0 On 1&amp;lt;/code&amp;gt; is now the same as &amp;lt;code&amp;gt;s d2 On 1&amp;lt;/code&amp;gt;, r0 has the value 2 so dr0 points at d2&lt;br /&gt;
&lt;br /&gt;
==Debugging advices==&lt;br /&gt;
The value stored in a register or variable can easily be displayed by writing it to the Setting parameter of the IC housing. This has no side effects. To see the value, just stand close to the IC housing and look directly at the housing.&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;s db Setting r0&amp;lt;/code&amp;gt;. # sets/writes the value of register &#039;&#039;&#039;r0&#039;&#039;&#039; into the parameter &#039;&#039;&#039;Setting&#039;&#039;&#039; of the IC Housing(&#039;&#039;&#039;db&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
To check if a certain block of code is executed, use the above trick but with a random number that you choose, like the line number.&amp;lt;br&amp;gt; This example will display the number 137 on the IC housing.&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;s db Setting 137&amp;lt;/code&amp;gt;  # sets/writes the number 137 into the parameter &#039;&#039;&#039;Setting&#039;&#039;&#039; of the IC Housing(&#039;&#039;&#039;db&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
Always use unique names for labels. When a label is named after a MIPS keyword like &amp;quot;Temperature:&amp;quot; or &amp;quot;Setting:&amp;quot; the original meaning of the keyword is overwritten, so when an instruction tries to use it an error will occur.&lt;br /&gt;
&lt;br /&gt;
A [[Cartridge#Configuration|configuration cartridge]] installed in a [[Handheld_Tablet|tablet]]  can be used to see all available values and configuration parameter for all devices you focus on.&lt;br /&gt;
&lt;br /&gt;
==Learning MIPS==&lt;br /&gt;
MIPS can be difficult to get started with. So here is a list of instructions that are useful for beginners. These can be used to write many different scripts.&lt;br /&gt;
&lt;br /&gt;
General:&lt;br /&gt;
* alias (make the script easier to read by assigning a name to a register or device, example: &amp;lt;code&amp;gt;alias rTemperature r15&amp;lt;/code&amp;gt;)&lt;br /&gt;
* label: (where &amp;quot;label&amp;quot; can be replaced with almost any word, jump and branch instructions will go to these, example: &amp;lt;code&amp;gt;start:&amp;lt;/code&amp;gt;)&lt;br /&gt;
* &amp;lt;code&amp;gt;yield&amp;lt;/code&amp;gt; (pause for 1-tick and then resume, if not used the script will automatically pause for 1-tick after 128 lines)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Jumps:&lt;br /&gt;
*&amp;lt;code&amp;gt;j someLabelName&amp;lt;/code&amp;gt; # jump to line with &#039;&#039;&#039;someLabelName&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
*&amp;lt;code&amp;gt;jal someLabelName&amp;lt;/code&amp;gt; # stores the next line number into the register ra (return address) and then jump to &#039;&#039;&#039;someLabelName&#039;&#039;&#039;)&lt;br /&gt;
*&amp;lt;code&amp;gt;j ra&amp;lt;/code&amp;gt; # jump to register ra (return address)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Branching (jump-if):&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
beq (branch if equal)&lt;br /&gt;
bne (branch if not-equal)&lt;br /&gt;
bgt (branch if greater than)&lt;br /&gt;
blt (branch if less than)&lt;br /&gt;
The suffix -al can be added to each of these (example: beqal) to save the next line number into the &amp;quot;return address&amp;quot; register&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Device interactions:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
l (load)&lt;br /&gt;
lb (load batch, requires one of the following: Average / Sum / Minimum / Maximum)&lt;br /&gt;
ls (load slot)&lt;br /&gt;
s (store)&lt;br /&gt;
sb (store batch)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Logic and Math:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
seqz (common NOT-gate: turns 0 into 1, and all other values into 0)&lt;br /&gt;
move&lt;br /&gt;
add (addition)&lt;br /&gt;
sub (subtraction)&lt;br /&gt;
mul (multiplication)&lt;br /&gt;
div (division)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Common device variables:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
On (1 is on, 0 is off)&lt;br /&gt;
Open (1 is open, 0 is closed)&lt;br /&gt;
Setting (meaning varies between devices, example: a LED display(console) will show this value)&lt;br /&gt;
Activate (1 usually means running, example: a Daylight sensor is 1 when the sun shines on it)&lt;br /&gt;
Temperature (in Kelvin, Celsius + 273.15)&lt;br /&gt;
Pressure (in kPa)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Notes:&lt;br /&gt;
&amp;lt;br&amp;gt;-All instructions and variables can be seen in-game in the MIPS editor window by clicking the &amp;quot;f&amp;quot;, &amp;quot;x&amp;quot; and &amp;quot;s(x)&amp;quot; buttons on the top right.&lt;br /&gt;
&amp;lt;br&amp;gt;-The stationpedia is the best source to see which variables are available to each device.&lt;br /&gt;
&amp;lt;br&amp;gt;-Most scripts are loops, they end with a jump instruction that leads back up to the start. Otherwise they will just run once and then stop.&lt;br /&gt;
&lt;br /&gt;
Two practice scripts:&lt;br /&gt;
&amp;lt;br&amp;gt;Automatic Night Light: Load &amp;quot;Activate&amp;quot; from a Daylight sensor, flip the value with a NOT-gate, store the value to the &amp;quot;On&amp;quot; variable of one or more lights.&lt;br /&gt;
&amp;lt;br&amp;gt;Automatic Wall Cooler: Read &amp;quot;Temperature&amp;quot; from a Gas Sensor. Branch if the value is greater than X, turn on the cooler. Branch if the value is less than Y, turn off the cooler. (Wall coolers need a minumum of 12.5 kPa pressure in the connected pipe)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=Instructions=&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;alias&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;alias&lt;br /&gt;
:alias str r? d? # labels register or device reference with name.  When alias is applied to a device, it will affect what shows on the screws in the IC base.  (housing)&lt;br /&gt;
&amp;lt;code&amp;gt;alias vTemperature r0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;alias dAutoHydro1 d0&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;move&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;move    &lt;br /&gt;
:d s     # stores the value of s in d&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 42 # Store 42 in register 0&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;l&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;load&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;l (load)&lt;br /&gt;
:l r# d# parameter&lt;br /&gt;
Reads from a device (d#) and stores the value in a register (r#)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r0 d0 Setting&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Read from the device on d0 into register 0&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r1 d5 Pressure&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Read the pressure from a sensor&lt;br /&gt;
&lt;br /&gt;
This also works with aliases. For example:&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
alias Sensor d0 &amp;lt;br/&amp;gt;&lt;br /&gt;
l r0 Sensor Temperature&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;ls&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;load slot&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ls (load slot)&lt;br /&gt;
:ls r# d# slotNum parameter&lt;br /&gt;
Reads from a slot (slotNum) of a device (d#)  and stores the value in a register (r#)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;ls r0 d0 2 Occupied&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Read from the second slot of device on d0, stores 1 in r0 if it&#039;s occupied, 0 otherwise.&lt;br /&gt;
&lt;br /&gt;
And here is the code to read the charge of an AIMeE:&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
alias robot d0 &amp;lt;br/&amp;gt;&lt;br /&gt;
alias charge r0 &amp;lt;br/&amp;gt;&lt;br /&gt;
ls charge robot 0 Charge &lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;s&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;set&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;s (set)&lt;br /&gt;
:s d# parameter r#&lt;br /&gt;
Writes a setting to a device. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s d0 Setting r0&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;add&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;add     &lt;br /&gt;
:d s t   # calculates s + t and stores the result in d&lt;br /&gt;
&amp;lt;code&amp;gt;add r0 r1 1 # add 1 to r1 and store the result as r0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;add r0 r0 1 # increment r0 by one&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;sub&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;sub     &lt;br /&gt;
:d s t   # calculates s - t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;mul&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;mul     &lt;br /&gt;
:d s t   # calculates s * t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;div&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;div     &lt;br /&gt;
:d s t   # calculates s / t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;mod&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;mod     &lt;br /&gt;
:d s t   &lt;br /&gt;
::# calculates s mod t and stores the result in d. Note this&lt;br /&gt;
::# doesn&#039;t behave like the % operator - the result will be &lt;br /&gt;
::# positive even if the either of the operands are negative&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;slt&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;slt     &lt;br /&gt;
:d s t   # stores 1 in d if s &amp;lt; t, 0 otherwise&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;sqrt&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;sqrt    &lt;br /&gt;
:d s     # calculates sqrt(s) and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;round&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;round   &lt;br /&gt;
:d s     # finds the rounded value of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;trunc&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;trunc   &lt;br /&gt;
:d s     # finds the truncated value of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;ceil&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ceil   &lt;br /&gt;
: d s     # calculates the ceiling of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;floor&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;floor  &lt;br /&gt;
: d s     # calculates the floor of s and stores the result in d&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;max&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;max    &lt;br /&gt;
: d s t   # calculates the maximum of s and t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;min&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;min    &lt;br /&gt;
: d s t   # calculates the minimum of s and t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;abs&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;abs    &lt;br /&gt;
: d s     # calculates the absolute value of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;log&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;log    &lt;br /&gt;
: d s     # calculates the natural logarithm of s and stores the result&lt;br /&gt;
::# in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;exp&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;exp    &lt;br /&gt;
: d s     # calculates the exponential of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;rand&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;rand   &lt;br /&gt;
: d       # selects a random number uniformly at random between 0 and 1&lt;br /&gt;
::# inclusive and stores the result in d&lt;br /&gt;
&lt;br /&gt;
::# boolean arithmetic uses the C convention that 0 is false and any non-zero&lt;br /&gt;
::# value is true.&lt;br /&gt;
&amp;lt;div id=&amp;quot;and&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;and    &lt;br /&gt;
: d s t   # stores 1 in d if both s and t have non-zero values,&lt;br /&gt;
::# 0 otherwise&lt;br /&gt;
&amp;lt;div id=&amp;quot;or&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;or     &lt;br /&gt;
: d s t   # stores 1 in d if either s or t have non-zero values,&lt;br /&gt;
::# 0 otherwise&lt;br /&gt;
&amp;lt;div id=&amp;quot;xor&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;xor    &lt;br /&gt;
: d s t   # stores 1 in d if exactly one of s and t are non-zero,&lt;br /&gt;
::# 0 otherwise&lt;br /&gt;
&amp;lt;div id=&amp;quot;nor&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;nor &lt;br /&gt;
:    d s t   # stores 1 in d if both s and t equal zero, 0 otherwise&lt;br /&gt;
::# Lines are numbered starting at zero&lt;br /&gt;
&amp;lt;div id=&amp;quot;j&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;j&lt;br /&gt;
:             a # jumps to line a.&lt;br /&gt;
&amp;lt;div id=&amp;quot;bltz&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bltz&lt;br /&gt;
:      s   a # jumps to line a if s &amp;lt;  0&lt;br /&gt;
&amp;lt;div id=&amp;quot;blez&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;blez &lt;br /&gt;
:     s   a # jumps to line a if s &amp;lt;= 0&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;bgez&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bgez &lt;br /&gt;
:     s   a # jumps to line a if s &amp;gt;= 0&lt;br /&gt;
&amp;lt;div id=&amp;quot;bgtz&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bgtz&lt;br /&gt;
:      s   a # jumps to line a if s &amp;gt;  0&lt;br /&gt;
&amp;lt;div id=&amp;quot;beq&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;beq &lt;br /&gt;
:      s t a # jumps to line a if s == t&lt;br /&gt;
&amp;lt;div id=&amp;quot;bne&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bne &lt;br /&gt;
:      s t a # jumps to line a if s != t&lt;br /&gt;
&amp;lt;div id=&amp;quot;bdseal&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bdseal&lt;br /&gt;
:    d? a(r?|num) # Jump execution to line a and store current line number if device d? is set.&lt;br /&gt;
&amp;lt;code&amp;gt;bdseal d0 32 #Store line number and jump to line 32 if d0 is assigned.&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;BR&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;bdseal dThisVictim HarvestCrop #Store line in ra and jump to sub HarvestCrop if device dThisVictim is assigned.&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;yield&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;yield           &lt;br /&gt;
: 	# ceases code execution for this power tick&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;lb&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;lb&lt;br /&gt;
:      r? typeHash var batchMode # Loads var from all output network devices with provided typeHash  using provided batchMode: Average(0), Sum (1), Minimum (2), Maximum (3). Can be used word or number. Result store into r?&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;sb&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;sb&lt;br /&gt;
:      typeHash var r? # Store register r? to var on all output network devices with provided typeHash&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
; #&lt;br /&gt;
:     # The following text will be ignored during compiling; use this to create comments.&lt;br /&gt;
&lt;br /&gt;
[https://www.cs.tufts.edu/comp/140/lectures/Day_3/mips_summary.pdf Other examples]&lt;br /&gt;
&lt;br /&gt;
== Conditional functions cheatsheet ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! suffix !! description !! branch to line !! branch and store return address !! relative jump to line !! set register&lt;br /&gt;
|-&lt;br /&gt;
| prefix: ||  || b- || b-al || br- || s-&lt;br /&gt;
|-&lt;br /&gt;
|  || unconditional || j    || jal    || jr    || &lt;br /&gt;
|-&lt;br /&gt;
| -eq  || if a == b || beq  || beqal  || breq  || seq&lt;br /&gt;
|-&lt;br /&gt;
| -eqz || if a == 0 || beqz || beqzal || breqz || seqz&lt;br /&gt;
|-&lt;br /&gt;
| -ge  || if a &amp;gt;= b || bge  || bgeal  || brge  || sge&lt;br /&gt;
|-&lt;br /&gt;
| -gez || if a &amp;gt;= 0 || bgez || bgezal || brgez || sgez&lt;br /&gt;
|-&lt;br /&gt;
| -gt  || if a &amp;gt; b  || bgt  || bgtal  || brgt  || sgt&lt;br /&gt;
|-&lt;br /&gt;
| -gtz || if a &amp;gt; 0  || bgtz || bgtzal || brgtz || sgtz&lt;br /&gt;
|-&lt;br /&gt;
| -le  || if a &amp;lt;= b || ble  || bleal  || brle  || sle&lt;br /&gt;
|-&lt;br /&gt;
| -lez || if a &amp;lt;= 0 || blez || blezal || brlez || slez&lt;br /&gt;
|-&lt;br /&gt;
| -lt  || if a &amp;lt; b  || blt  || bltal  || brlt  || slt&lt;br /&gt;
|-&lt;br /&gt;
| -ltz || if a &amp;lt; 0  || bltz || bltzal || brltz || sltz&lt;br /&gt;
|-&lt;br /&gt;
| -ne  || if a != b || bne  || bneal  || brne  || sne&lt;br /&gt;
|-&lt;br /&gt;
| -nez || if a != 0 || bnez || bnezal || brnez || snez&lt;br /&gt;
|-&lt;br /&gt;
| -dns || if device d is not set          || bdns || bdnsal || brdns || sdns&lt;br /&gt;
|-&lt;br /&gt;
| -dse || if device d is set              || bdse || bdseal || brdse || sdse&lt;br /&gt;
|-&lt;br /&gt;
| -ap  || if a approximately equals b     || bap  || bapal  || brap  || sap&lt;br /&gt;
|-&lt;br /&gt;
| -apz || if a approximately equals 0     || bapz || bapzal || brapz || sapz&lt;br /&gt;
|-&lt;br /&gt;
| -na  || if a not approximately equals b || bna  || bnaal  || brna  || sna&lt;br /&gt;
|-&lt;br /&gt;
| -naz || if a not approximately equals 0 || bnaz || bnazal || brnaz || snaz&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
All &amp;lt;code&amp;gt;b-&amp;lt;/code&amp;gt; commands require target line as last argument, all &amp;lt;code&amp;gt;s-&amp;lt;/code&amp;gt; commands require register to store result as first argument. All &amp;lt;code&amp;gt;br-&amp;lt;/code&amp;gt; commands require number to jump relatively as last argument. e.g. &amp;lt;code&amp;gt;breq a b 3&amp;lt;/code&amp;gt; means if a=b then jump to 3 lines after.&lt;br /&gt;
&lt;br /&gt;
All approximate functions require additional argument denoting how close two numbers need to be considered equal. E.g.: &amp;lt;code&amp;gt;sap r0 100 101 0.01&amp;lt;/code&amp;gt; will consider 100 and 101 almost equal (not more than 1%=0.01 different) and will set r0 to 1. The exact formula is &amp;lt;code&amp;gt;if abs(a - b) &amp;lt;= max(c * max(abs(a), abs(b)), float.epsilon * 8)&amp;lt;/code&amp;gt; for &amp;lt;code&amp;gt;-ap&amp;lt;/code&amp;gt; and is similar for other approximate functions.&lt;br /&gt;
&lt;br /&gt;
==Device Variables==&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Activate&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Activate&lt;br /&gt;
:1 if device is activated (usually means running), otherwise 0&lt;br /&gt;
:&amp;lt;code&amp;gt;l r0 d0 Activate # sets r0 to 1 if on or 0 if off&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;AirRelease&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;AirRelease&lt;br /&gt;
&amp;lt;div id=&amp;quot;Charge&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Charge&lt;br /&gt;
:    The current charge the device has.&lt;br /&gt;
&amp;lt;div id=&amp;quot;CLearMemory&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;CLearMemory&lt;br /&gt;
:    When set to 1, clears the counter memory (e.g. ExportCount).  Will set itself back to 0 when triggered.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Color&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Color&lt;br /&gt;
:    0 (or lower) = Blue&lt;br /&gt;
:    1 = Grey&lt;br /&gt;
:    2 = Green&lt;br /&gt;
:    3 = Orange&lt;br /&gt;
:    4 = Red&lt;br /&gt;
:    5 = Yellow&lt;br /&gt;
:    6 = White&lt;br /&gt;
:    7 = Black&lt;br /&gt;
:    8 = Brown&lt;br /&gt;
:    9 = Khaki&lt;br /&gt;
:    10 = Pink&lt;br /&gt;
:    11 (or higher) = Purple&lt;br /&gt;
&amp;lt;div id=&amp;quot;CompletionRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;CompletionRatio&lt;br /&gt;
&amp;lt;div id=&amp;quot;ElevatorLevel&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ElevatorLevel&lt;br /&gt;
&amp;lt;div id=&amp;quot;ElevatorSpeed&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ElevatorSpeed&lt;br /&gt;
&amp;lt;div id=&amp;quot;Error&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Error&lt;br /&gt;
:	1 if device is in error state, otherwise 0&lt;br /&gt;
&amp;lt;div id=&amp;quot;ExportCount&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ExportCount&lt;br /&gt;
:    How many items exporfted since last ClearMemory.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Filtration&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Filtration&lt;br /&gt;
:	The current state of the filtration system.  For example filtration = 1 for a Hardsuit when filtration is On.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Harvest&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Harvest&lt;br /&gt;
:	Performs the harvesting action for any plant based machinery.&lt;br /&gt;
:  &amp;lt;code&amp;gt;s d0 Harvest 1 # Performs 1 harvest action on device d0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;Horizontal&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Horizontal&lt;br /&gt;
&amp;lt;div id=&amp;quot;HorizontalRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;HorizontalRatio&lt;br /&gt;
&amp;lt;div id=&amp;quot;Idle&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Idle&lt;br /&gt;
&amp;lt;div id=&amp;quot;ImportCount&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ImportCount&lt;br /&gt;
&amp;lt;div id=&amp;quot;Lock&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Lock&lt;br /&gt;
&amp;lt;div id=&amp;quot;Maximum&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Maximum&lt;br /&gt;
&amp;lt;div id=&amp;quot;Mode&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Mode&lt;br /&gt;
&amp;lt;div id=&amp;quot;On&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;On&lt;br /&gt;
&amp;lt;div id=&amp;quot;Open&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Open&lt;br /&gt;
&amp;lt;div id=&amp;quot;Output&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Output&lt;br /&gt;
&amp;lt;div id=&amp;quot;Plant&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Plant&lt;br /&gt;
:    Performs the planting operation for any plant based machinery.&lt;br /&gt;
:  &amp;lt;code&amp;gt;s d0 Plant 1 # Plants one crop in device d0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;PositionX&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PositionX&lt;br /&gt;
&amp;lt;div id=&amp;quot;PositionY&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PositionY&lt;br /&gt;
&amp;lt;div id=&amp;quot;PositionZ&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PositionZ&lt;br /&gt;
&amp;lt;div id=&amp;quot;Power&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Power&lt;br /&gt;
&amp;lt;div id=&amp;quot;PowerActual&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PowerActual&lt;br /&gt;
&amp;lt;div id=&amp;quot;PowerPotential&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PowerPotential&lt;br /&gt;
&amp;lt;div id=&amp;quot;PowerRequired&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PowerRequired&lt;br /&gt;
&amp;lt;div id=&amp;quot;Pressure&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Pressure&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureExternal&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureExternal&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureInteral&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureInteral&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureSetting&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureSetting&lt;br /&gt;
&amp;lt;div id=&amp;quot;Quantity&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Quantity&lt;br /&gt;
:	Total quantity in the device.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Ratio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Ratio&lt;br /&gt;
:	Context specific value depending on device, 0 to 1 based ratio.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioCarbonDioxide&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioCarbonDioxide&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioNitrogen&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioNitrogen&lt;br /&gt;
:	The ratio of nitrogen in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioOxygen&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioOxygen&lt;br /&gt;
:	The ratio of oxygen in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioPollutant&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioPollutant&lt;br /&gt;
:	The ratio of pollutant in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioVolatiles&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioVolatiles&lt;br /&gt;
:	The ratio of volatiles in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioWater&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioWater&lt;br /&gt;
:	The ratio of water in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Reagents&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Reagents&lt;br /&gt;
&amp;lt;div id=&amp;quot;RecipeHash&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RecipeHash&lt;br /&gt;
&amp;lt;div id=&amp;quot;RequestHash&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RequestHash&lt;br /&gt;
&amp;lt;div id=&amp;quot;RequiredPower&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RequiredPower&lt;br /&gt;
&amp;lt;div id=&amp;quot;Setting&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Setting&lt;br /&gt;
&amp;lt;div id=&amp;quot;SolarAngle&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;SolarAngle&lt;br /&gt;
:    Solar angle of the device.&lt;br /&gt;
:  &amp;lt;code&amp;gt;l r0 d0 SolarAngle # Sets r0 to the solar angle of d0.&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;Temperature&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Temperature&lt;br /&gt;
&amp;lt;div id=&amp;quot;TemperatureSettings&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;TemperatureSettings&lt;br /&gt;
&amp;lt;div id=&amp;quot;TotalMoles&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;TotalMoles&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityMagnitude&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityMagnitude&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityRelativeX&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityRelativeX&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityRelativeY&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityRelativeY&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityRelativeZ&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityRelativeZ&lt;br /&gt;
&amp;lt;div id=&amp;quot;Vertical&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Vertical&lt;br /&gt;
:	Vertical setting of the device.&lt;br /&gt;
&amp;lt;div id=&amp;quot;VerticalRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VerticalRatio&lt;br /&gt;
:	Ratio of vertical setting for device.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Volume&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Volume&lt;br /&gt;
:	Returns the device atmosphere volume&lt;br /&gt;
&lt;br /&gt;
==Slot Variables==&lt;br /&gt;
In general (always?) slots are assigned as follows.&lt;br /&gt;
:Slot 0: Import&lt;br /&gt;
:Slot 1: Export&lt;br /&gt;
:Slot 2: Inside Machine&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Occupied&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Occupied&lt;br /&gt;
:&amp;lt;code&amp;gt;ls r0 d0 2 Occupied #Stores 1 in r0 if d0 has more seeds&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;ls vOccupied dThisVictim 2 Occupied #stores 1 in vOccupied if dThisVictim has more seeds&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;OccupantHash&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;OccupantHash&lt;br /&gt;
&amp;lt;div id=&amp;quot;Quantity&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Quantity&lt;br /&gt;
&amp;lt;div id=&amp;quot;Damage&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Damage&lt;br /&gt;
&amp;lt;div id=&amp;quot;Efficiency&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Efficiency&lt;br /&gt;
&amp;lt;div id=&amp;quot;Health&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Health&lt;br /&gt;
&amp;lt;div id=&amp;quot;Growth&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Growth&lt;br /&gt;
:&amp;lt;code&amp;gt;ls r0 d0 0 Growth # Store the numerical growth stage of d0 in r0&amp;lt;/code&amp;gt; &lt;br /&gt;
&amp;lt;div id=&amp;quot;Pressure&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Pressure&lt;br /&gt;
&amp;lt;div id=&amp;quot;Temperature&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Temperature&lt;br /&gt;
&amp;lt;div id=&amp;quot;Charge&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Charge&lt;br /&gt;
&amp;lt;div id=&amp;quot;ChargeRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ChargeRatio&lt;br /&gt;
&amp;lt;div id=&amp;quot;Class&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Class&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureWaste&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureWaste&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureAir&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureAir&lt;br /&gt;
&amp;lt;div id=&amp;quot;MaxQuantity&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;MaxQuantity&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Mature&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Mature&lt;br /&gt;
:&amp;lt;code&amp;gt;ls r0 d0 0 Mature # Store 1 in r0 if d0 has a mature crop&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;ls vMature dThisVictim 0 Mature # Store 1 in vMature if dThisVictim has a mature crop&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Examples=&lt;br /&gt;
Previous examples were obsolete due to game changes, or confusing, they have been moved into the Discussions section&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Harvie automation===&lt;br /&gt;
This script uses the batch instruction &amp;lt;code&amp;gt;sb ...&amp;lt;/code&amp;gt; to control all Harvie devices on the network. But only one Harvie and one Tray will be the &#039;&#039;master&#039;&#039; and have their values read, the rest of the Harvies will repeat exactly what this unit does. Some problems with this design is that different types of crops mature at different speeds, and if seeds were manually planted and the master unit recieved the first seed, the harvesting action will be performed too early on all the other plants since they are growing a few seconds slower.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot; data-expandtext=&amp;quot;{{int:Expand, Automated Harvie Script}}&amp;quot; data-collapsetext=&amp;quot;{{int:Collapse, Automated Harvie Script}}&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
alias dHarvie d0&lt;br /&gt;
alias dTray d1&lt;br /&gt;
&lt;br /&gt;
alias rHarvieHash r8&lt;br /&gt;
alias rTrayHash r9&lt;br /&gt;
l rHarvieHash dHarvie PrefabHash&lt;br /&gt;
l rTrayHash dTray PrefabHash&lt;br /&gt;
&lt;br /&gt;
main:&lt;br /&gt;
yield&lt;br /&gt;
 #read plant data from the Tray&lt;br /&gt;
ls r0 dTray 0 Mature&lt;br /&gt;
 #harvestable plants return 1, young plants return 0&lt;br /&gt;
 #nothing planted returns -1&lt;br /&gt;
beq r0 -1 plantCrop&lt;br /&gt;
beq r0 1 harvestCrop&lt;br /&gt;
ls r0 dTray 0 Seeding&lt;br /&gt;
 #seeds available returns 1, all seeds picked returns 0&lt;br /&gt;
 #plants too young or old for seeds returns -1&lt;br /&gt;
beq r0 1 harvestCrop&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
plantCrop:&lt;br /&gt;
 #stop the planting if no seeds available&lt;br /&gt;
 #otherwise it will plant nothing repeatedly&lt;br /&gt;
ls r0 dHarvie 0 Occupied&lt;br /&gt;
beq r0 0 main&lt;br /&gt;
sb rHarvieHash Plant 1&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
harvestCrop:&lt;br /&gt;
sb rHarvieHash Harvest 1&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
### End Script ###&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
===Solar Panel 2-axis tracking===&lt;br /&gt;
This script was copied from the [[Solar_Logic_Circuits_Guide]] (code provided by bti, comments and readability changes by Fudd79)&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot; data-expandtext=&amp;quot;{{int:Expand, Solar Panel 2-axis tracking}}&amp;quot; data-collapsetext=&amp;quot;{{int:Collapse, Solar Panel 2-axis tracking}}&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# This code assumes the following:&lt;br /&gt;
# Daylight Sensor data-port points north&lt;br /&gt;
# Solar Panel data-port points east&lt;br /&gt;
&lt;br /&gt;
alias sensor d0&lt;br /&gt;
alias v_angle r0&lt;br /&gt;
alias h_angle r1&lt;br /&gt;
alias sun_up r2&lt;br /&gt;
&lt;br /&gt;
define solar_panel_hash -539224550&lt;br /&gt;
define heavy_solar_panel_hash -1545574413&lt;br /&gt;
&lt;br /&gt;
start:&lt;br /&gt;
# Check to see if sun is up&lt;br /&gt;
l sun_up sensor Activate&lt;br /&gt;
# Go to reset if it&#039;s not&lt;br /&gt;
beqz sun_up reset&lt;br /&gt;
&lt;br /&gt;
# Calculate vertical angle&lt;br /&gt;
l v_angle sensor Vertical&lt;br /&gt;
div v_angle v_angle 1.5&lt;br /&gt;
sub v_angle 50 v_angle&lt;br /&gt;
&lt;br /&gt;
# Write vertical angle to all solar panels&lt;br /&gt;
sb solar_panel_hash Vertical v_angle&lt;br /&gt;
sb heavy_solar_panel_hash Vertical v_angle&lt;br /&gt;
&lt;br /&gt;
# Obtain horizontal angle&lt;br /&gt;
l h_angle sensor Horizontal&lt;br /&gt;
&lt;br /&gt;
# Write vertical angle to all solar panels&lt;br /&gt;
sb solar_panel_hash Horizontal h_angle&lt;br /&gt;
sb heavy_solar_panel_hash Horizontal h_angle&lt;br /&gt;
&lt;br /&gt;
# Go to start again&lt;br /&gt;
yield&lt;br /&gt;
j start&lt;br /&gt;
&lt;br /&gt;
reset:&lt;br /&gt;
# Park solar panels vertically facing sunrise&lt;br /&gt;
sb solar_panel_hash Vertical 0&lt;br /&gt;
sb heavy_solar_panel_hash Vertical 0&lt;br /&gt;
# Park solar panels horizontally facing sunrise&lt;br /&gt;
sb solar_panel_hash Horizontal -90&lt;br /&gt;
sb heavy_solar_panel_hash Horizontal -90&lt;br /&gt;
# Wait 10 seconds&lt;br /&gt;
sleep 10&lt;br /&gt;
# Go to start again&lt;br /&gt;
j start&lt;br /&gt;
&lt;br /&gt;
### End Script ###&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
===Example experiment: how many lines of code are executed each tick?===&lt;br /&gt;
To determine this, a script without &amp;lt;code&amp;gt;yield&amp;lt;/code&amp;gt; will be used. It should have as few lines as possible (so no labels are used, but a reset value at the top will be needed) and count the number of lines, the IC Housing will be used to display the result.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
move r0 1   #the first line has number 0&lt;br /&gt;
add r0 r0 3&lt;br /&gt;
s db Setting r0&lt;br /&gt;
j 1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Result (the numbers appears every 0.5 seconds):&lt;br /&gt;
&amp;lt;br&amp;gt;127&lt;br /&gt;
&amp;lt;br&amp;gt;256 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;385 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;511 (+126)&lt;br /&gt;
&amp;lt;br&amp;gt;640 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;769 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;895 (+126)&lt;br /&gt;
&amp;lt;br&amp;gt;1024 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;1153 (+129)&lt;br /&gt;
&lt;br /&gt;
There is a repeating +129, +129, +126 sequence, a hint that the real value is 128. Which also happens to be the number of lines in a script, which makes sense. A variation of this experiment will show that empty rows are also counted towards this number.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Links=&lt;br /&gt;
----&lt;br /&gt;
* [https://stationeering.com/tools/ic] Stationeering.com offers a programmable circuits simulator so you can develop your code without repeatedly dying in game!&lt;br /&gt;
* [http://www.easy68k.com/] EASy68K is a 68000 Structured Assembly Language IDE.&lt;br /&gt;
* [https://marketplace.visualstudio.com/items?itemName=Traineratwot.stationeers-ic10] syntax highlighting for IC10 MIPS for Visual Studio Code (updated Feb 10th 2022)&lt;br /&gt;
* [https://pastebin.com/6Uw1KSRN] syntax highlighting for IC10 MIPS for KDE kwrite/kate text editor&lt;br /&gt;
* [https://drive.google.com/file/d/1yEsJ-u94OkuMQ8K6fY7Ja1HNpLcAdjo_/view] syntax highlighting for IC10 MIPS for Notepad++&lt;br /&gt;
* [https://pastebin.com/3kmGy0NN] syntax highlighting for IC10 MIPS for Notepad++ (updated: 05/05/2021)&lt;br /&gt;
* [https://drive.google.com/file/d/1Xrv5U0ZI5jDcPv7yX7EAAxaGk5hKP0xO/view?usp=sharing] syntax highlighting for IC10 MIPS for Notepad++ (updated: 11/08/2022)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=Index=&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|+Functions &lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
*[[#abs|abs]]&lt;br /&gt;
*[[#add|add]]&lt;br /&gt;
*[[#alias|alias]]&lt;br /&gt;
*[[#and|and]]&lt;br /&gt;
*[[#beq|beq]]&lt;br /&gt;
*[[#bgez|bgez]]&lt;br /&gt;
*[[#bgtz|bgtz]]&lt;br /&gt;
*[[#blez|blez]]&lt;br /&gt;
*[[#bltz|bltz]]&lt;br /&gt;
*[[#bne|bne]]&lt;br /&gt;
*[[#breq|breq]]&lt;br /&gt;
*[[#brgez|brgez]]&lt;br /&gt;
*[[#brgtz|brgtz]]&lt;br /&gt;
*[[#brlez|brlez]]&lt;br /&gt;
*[[#brltz|brltz]]&lt;br /&gt;
*[[#brne|brne]]&lt;br /&gt;
*[[#ceil|cell]]&lt;br /&gt;
*[[#div|div]]&lt;br /&gt;
*[[#exp|exp]]&lt;br /&gt;
*[[#floor|floor]]&lt;br /&gt;
*[[#j|j]]&lt;br /&gt;
*[[#jr|jr]]&lt;br /&gt;
*[[#l|l]]&lt;br /&gt;
*[[#log|log]]&lt;br /&gt;
*[[#ls|ls]]&lt;br /&gt;
*[[#max|max]]&lt;br /&gt;
*[[#min|min]]&lt;br /&gt;
*[[#mod|mod]]&lt;br /&gt;
*[[#move|move]]&lt;br /&gt;
*[[#mul|mul]]&lt;br /&gt;
*[[#nor|nor]]&lt;br /&gt;
*[[#or|or]]&lt;br /&gt;
*[[#rand|rand]]&lt;br /&gt;
*[[#round|round]]&lt;br /&gt;
*[[#s|s]]&lt;br /&gt;
*[[#slt|slt]]&lt;br /&gt;
*[[#sqrt|sqrt]]&lt;br /&gt;
*[[#sub|sub]]&lt;br /&gt;
*[[#trunc|trunc]]&lt;br /&gt;
*[[#xor|xor]]xor&lt;br /&gt;
*[[#yield|yield]]&lt;br /&gt;
*[[##|#]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|+Device Variables &lt;br /&gt;
&amp;lt;div  class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
*[[#Activate|Activate]]&lt;br /&gt;
*[[#AirRelease|AirRelease]]&lt;br /&gt;
*[[#Charge|Charge]]&lt;br /&gt;
*[[#CLearMemory|CLearMemory]]&lt;br /&gt;
*[[#Color|Color]]&lt;br /&gt;
*[[#CompletionRatio|CompletionRatio]]&lt;br /&gt;
*[[#ElevatorLevel|ElevatorLevel]]&lt;br /&gt;
*[[#ElevatorSpeed|ElevatorSpeed]]&lt;br /&gt;
*[[#Error|Error]]&lt;br /&gt;
*[[#ExportCount|ExportCount]]&lt;br /&gt;
*[[#Filtration|Filtration]]&lt;br /&gt;
*[[#Harvest|Harvest]]&lt;br /&gt;
*[[#Horizontal|Horizontal]]&lt;br /&gt;
*[[#HorizontalRatio|HorizontalRatio]]&lt;br /&gt;
*[[#Idle|Idle]]&lt;br /&gt;
*[[#ImportCount|ImportCount]]&lt;br /&gt;
*[[#Lock|Lock]]&lt;br /&gt;
*[[#Maximum|Maximum]]&lt;br /&gt;
*[[#Mode|Mode]]&lt;br /&gt;
*[[#On|On]]&lt;br /&gt;
*[[#Open|Open]]&lt;br /&gt;
*[[#Output|Output]]&lt;br /&gt;
*[[#Plant|Plant]]&lt;br /&gt;
*[[#PositionX|PositionX]]&lt;br /&gt;
*[[#PositionY|PositionY]]&lt;br /&gt;
*[[#PositionZ|PositionZ]]&lt;br /&gt;
*[[#Power|Power]]&lt;br /&gt;
*[[#PowerActual|PowerActual]]&lt;br /&gt;
*[[#PowerPotential|PowerPotential]]&lt;br /&gt;
*[[#PowerRequired|PowerRequired]]&lt;br /&gt;
*[[#Pressure|Pressure]]&lt;br /&gt;
*[[#PressureExternal|PressureExternal]]&lt;br /&gt;
*[[#PressureInteral|PressureInteral]]&lt;br /&gt;
*[[#PressureSetting|PressureSetting]]&lt;br /&gt;
*[[#Quantity|Quantity]]&lt;br /&gt;
*[[#Ratio|Ratio]]&lt;br /&gt;
*[[#RatioCarbonDioxide|RatioCarbonDioxide]]&lt;br /&gt;
*[[#RatioNitrogen|RatioNitrogen]]&lt;br /&gt;
*[[#RatioOxygen|RatioOxygen]]&lt;br /&gt;
*[[#RatioPollutant|RatioPollutant]]&lt;br /&gt;
*[[#RatioVolatiles|RatioVolatiles]]&lt;br /&gt;
*[[#RatioWater|RatioWater]]&lt;br /&gt;
*[[#Reagents|Reagents]]&lt;br /&gt;
*[[#RecipeHash|RecipeHash]]&lt;br /&gt;
*[[#RequestHash|RequestHash]]&lt;br /&gt;
*[[#RequiredPower|RequiredPower]]&lt;br /&gt;
*[[#Setting|Setting]]&lt;br /&gt;
*[[#SolarAngle|SolarAngle]]&lt;br /&gt;
*[[#Temperature|Temperature]]&lt;br /&gt;
*[[#TemperatureSettings|TemperatureSettings]]&lt;br /&gt;
*[[#TotalMoles|TotalMoles]]&lt;br /&gt;
*[[#VelocityMagnitude|VelocityMagnitude]]&lt;br /&gt;
*[[#VelocityRelativeX|VelocityRelativeX]]&lt;br /&gt;
*[[#VelocityRelativeY|VelocityRelativeY]]&lt;br /&gt;
*[[#VelocityRelativeZ|VelocityRelativeZ]]&lt;br /&gt;
*[[#Vertical|Vertical]]&lt;br /&gt;
*[[#VerticalRatio|VerticalRatio]]&lt;br /&gt;
*[[#Volume|Volume]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|+Slot Variables &lt;br /&gt;
&amp;lt;div  class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
*[[#Occupied|Occupied]]&lt;br /&gt;
*[[#OccupantHash|OccupantHash]]&lt;br /&gt;
*[[#Quantity|Quantity]]&lt;br /&gt;
*[[#Damage|Damage]]&lt;br /&gt;
*[[#Efficiency|Efficiency]]&lt;br /&gt;
*[[#Health|Health]]&lt;br /&gt;
*[[#Growth|Growth]]&lt;br /&gt;
*[[#Pressure|Pressure]]&lt;br /&gt;
*[[#Temperature|Temperature]]&lt;br /&gt;
*[[#Charge|Charge]]&lt;br /&gt;
*[[#ChargeRatio|ChargeRatio]]&lt;br /&gt;
*[[#Class|Class]]&lt;br /&gt;
*[[#PressureWaste|PressureWaste]]&lt;br /&gt;
*[[#PressureAir|PressureAir]]&lt;br /&gt;
*[[#MaxQuantity|MaxQuantity]]&lt;br /&gt;
*[[#Mature|Mature]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=IcX preprocessor=&lt;br /&gt;
&lt;br /&gt;
[https://traineratwot.aytour.ru/wiki/icx Official wiki]&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Biomass&amp;diff=12977</id>
		<title>Biomass</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Biomass&amp;diff=12977"/>
		<updated>2022-08-22T14:44:58Z</updated>

		<summary type="html">&lt;p&gt;Wark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;languages /&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
{{Itembox&lt;br /&gt;
 | name        = Material (Biomass)&lt;br /&gt;
 | image       =  &lt;br /&gt;
 | stacks      = 100x&lt;br /&gt;
 | usedwith    = &lt;br /&gt;
*[[Arc Furnace]]&lt;br /&gt;
*[[Furnace]]&lt;br /&gt;
*[[Portable_Composter]]&lt;br /&gt;
*[[Advanced_Composter]]&lt;br /&gt;
 | hashid      = -831480639&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Description == &amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
Biomass is made from organic matter (plants, seeds, food and decayed food) in two steps. A [[Recycler]] will turn organic matter into [[Reagent_Mix|reagent mix]], a [[Centrifuge]] or a furnace will turn this into biomass.&lt;br /&gt;
&lt;br /&gt;
Biomass can be turned into [[Charcoal]] in a furnace or [[Fertilizer]] in a composter.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Guide_(Farming)&amp;diff=12967</id>
		<title>Guide (Farming)</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Guide_(Farming)&amp;diff=12967"/>
		<updated>2022-08-21T17:16:40Z</updated>

		<summary type="html">&lt;p&gt;Wark: moved the section about Fertilizers to its own page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Food]]&lt;br /&gt;
== Info ==&lt;br /&gt;
=== Choose Farming Plot ===&lt;br /&gt;
There are 5 farming plot items are available in normal gameplay, [[Portable Hydroponics]], [[Planter]], [[Hydroponics Tray]], [[Hydroponics Device]] and [[Hydroponics Station]]. [[Automated Hydroponics]] is labeled obsolete thus only accessible via [[Creative Mode]].&lt;br /&gt;
* [[Portable Hydroponics]], early game item&lt;br /&gt;
**pros&lt;br /&gt;
***Early game item, normally provided in starter crate. &lt;br /&gt;
***No piping needed. Insert starter water canister can last a long time.&lt;br /&gt;
**cons&lt;br /&gt;
***Can not be automated.&lt;br /&gt;
***Portable item, clutters base floor.&lt;br /&gt;
***Requires external lighting (sun/ [[Grow Light]])&lt;br /&gt;
* [[Planter]], early game item&lt;br /&gt;
**pros&lt;br /&gt;
***Early game item, do not need alloy to build.&lt;br /&gt;
***No piping needed. Accepts water canister, water bottle, or dedicated water pipe.&lt;br /&gt;
***Can be automated.&lt;br /&gt;
**cons&lt;br /&gt;
***When not using liquid pipe, watering the plant can be labor-intensive. &lt;br /&gt;
***Has only one water port so it can not be chained, making the green house layout less compact.&lt;br /&gt;
***Requires external lighting (sun/ [[Grow Light]])&lt;br /&gt;
* [[Hydroponics Tray]], mid/end game item&lt;br /&gt;
**pros&lt;br /&gt;
***Do not need alloy to build.&lt;br /&gt;
***Can be automated.&lt;br /&gt;
***Extremely space-efficient, one plot per small grid.&lt;br /&gt;
**cons&lt;br /&gt;
***Requires piping network to feed water.&lt;br /&gt;
***Data port is absent. Does not support data interrogation for logic systems.&lt;br /&gt;
***Requires external lighting (sun/ [[Grow Light]])&lt;br /&gt;
* [[Hydroponics Device]], mid/end game item&lt;br /&gt;
**pros&lt;br /&gt;
***Do not need alloy to build.&lt;br /&gt;
***Can be automated.&lt;br /&gt;
***Data port supports data interrogation for logic systems.&lt;br /&gt;
**cons&lt;br /&gt;
***Requires piping network to feed water.&lt;br /&gt;
***Not space-efficient: requires a pipe segment between two consequtive plots, as well as wiring from the data port.&lt;br /&gt;
***Requires external lighting (sun/ [[Grow Light]])&lt;br /&gt;
*[[Hydroponics Station]], mid/end game item&lt;br /&gt;
**pros&lt;br /&gt;
***Built-in light source.&lt;br /&gt;
**cons&lt;br /&gt;
***Requires steel to build.&lt;br /&gt;
***Can not be automated.&lt;br /&gt;
***bulky, 4 plot for 3x4 small grid, not space-efficient.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Setup === &lt;br /&gt;
* &#039;&#039;&#039;Using [[Portable Hydroponics]], [[Planter]], [[Hydroponics Tray]], [[Hydroponics Device]] or [[Hydroponics Station]]&#039;&#039;&#039;&lt;br /&gt;
# All of them use an open-top design so a controlled atmosphere (greenhouse) is required to operate this equipment. Build an airtight room with an airlock. Use [[Circuitboard_(Airlock)|simple airlock]] if the environment outside is a vacuum, or [[Circuitboard_(Advanced_Airlock)|advanced airlock]] if the outside world has pressure.&lt;br /&gt;
#* If you plan to rely on [[Grow Light]] or [[Hydroponics Station]], direct sunlight is not required, so you can build the greenhouse anywhere using any material.&lt;br /&gt;
#* If you want to use sunlight as well, the greenhouse should be planned with maximum sun exposure in mind, and all walls/ceilings facing the sun trajectory are made of glass. &lt;br /&gt;
# Build an entire set of pressure/temperature/gas mixture control for the greenhouse, either manual system or automated (via [[Kit_(Logic_I/O)|logic chips]] or [[Integrated_Circuit_(IC10)|programable IC chip]]). Make sure the following conditions are met, or the plant will wither through a declining health bar:&lt;br /&gt;
#* 7.7 kPa &amp;lt; Pressure &amp;lt; 190 kPa. Glass panel collapses near 200 kPa pressure difference.&lt;br /&gt;
#* Atmosphere and pipes being mostly free of [[pollutant]]s and [[volatiles]], maximum of 3 mols for volatiles.&lt;br /&gt;
#* 40 kPa atmosphere of minimum 1% [[Carbon_Dioxide|carbon dioxide]]. &lt;br /&gt;
#* 15 °C &amp;lt; Air Temperature &amp;lt; 50 °C.&lt;br /&gt;
#* 5 °C &amp;lt; Water Temperature &amp;lt; 60 °C.&lt;br /&gt;
# Provide grow beds with water, or the plant will wither through a declining health bar. Insert a canister of water into the slot of [[Portable Hydroponics]]. Apply water bottle or water canister directly on [[Planter]]. Connect [[Hydroponics Tray]], [[Hydroponics Device]], [[Planter]] or [[Hydroponics Station]] to a liquid pipe network containing water.&lt;br /&gt;
# Seed the farming plot. Can be done with either seeds or raw fruits.&lt;br /&gt;
# Provide illumination to the plants. Activate the UV light on [[Hydroponics Station]], turn on your dedicated [[Grow Light]], or wait till the sun comes up. The plant won&#039;t die for lack of light exposure, merely stops growing. Low sunlight strength on Europa will produce a misleading warning saying &#039;no sunlight&#039;, but really it is just growing at a reduced rate.&lt;br /&gt;
# [[Fertilizer]] (obtained through [[Portable Composter]] or [[Advanced Composter]]) can be used to speed up growth or boost yield depending on how it is made. More detail to be added. &lt;br /&gt;
# There is a seed mature stage right before the fruit mature stage, so seed harvesting is time-sensitive. Point cursor at the plant at the right growth stage there will be a hint saying how many seeds are available for harvesting. If one waited too long there won&#039;t be any seed left, only fruits. You can however replant fruit as if it&#039;s a seed. Harvesting seeds does not affect fruit yield. &lt;br /&gt;
# Wait till the fruit matures (cursor hints current yield), and harvest. The current patch note says the decay timer begins when the fruit matures, even when it is still left on the tree. &lt;br /&gt;
# A healthy plant consumes water and [[Carbon_Dioxide|carbon dioxide]], then produces [[Oxygen|oxygen]] and radiates heat into the surrounding atmosphere. Constant manual intervention or another feedback loop into the environment control will be necessary to keep the greenhouse running in the long term.&lt;br /&gt;
(it should be mentioned that the [[Hydroponics Tray]] can be automated through the use of a Harvie unit ([[Kit (Harvie)]]). By placing the unit above the [[Hydroponics Tray]], the Harvie unit will be able to automatically plant and harvest crops with the use of logic)&lt;br /&gt;
* &#039;&#039;&#039;Using [[Automated Hydroponics]]&#039;&#039;&#039;&lt;br /&gt;
# This item is obsolete. It&#039;s only accessible in creative mode. Check [[Automated Hydroponics|its own article]] for detail.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Plant consumption and production of gases and water===&lt;br /&gt;
version 0.2.3456&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Plant !! Temperature (air) !! H2O (mol/tick)!! CarbonDioxide (mol/tick)!! Oxygen (mol/tick)!! Volatiles (mol/tick)!! Nitrogen (mol/tick)!! NitrousOxide (mol/tick)!! Pollutant (mol/tick)&lt;br /&gt;
|-&lt;br /&gt;
| Food crops + fern + flowers || 15-52 °C || -0.00000596 || -0.00240 || +0.00120 || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Tropical Lily || 17-56 °C || -0.00000596 || -0.00400 || +0.00200 || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Peace Lily || 13-52 °C || -0.00000596 || -0.00400 || +0.00200 || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Darga fern || 15-52 °C || -0.00000596 || -0.01700 || +0.00850 || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Mushroom&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || 15-52 °C || -0.00000596 || +0.00120 || -0.00240 || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Winterspawn, alpha || best at ~18 °C || -0.00020000 || || +0.000181&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; || +0.000362&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; || -0.0060 || ||&lt;br /&gt;
|-&lt;br /&gt;
| Winterspawn, beta || best at ~20 °C || -0.00040000 || || +0.000281&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; || +0.000562&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; || -0.0100 || ||&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Hades, alpha || ? || -0.00000596 || || -?&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; || -?&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; || || || +0.0040&lt;br /&gt;
|-&lt;br /&gt;
| Hades, beta || ? || -0.00000596 || || -?&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; || -?&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; || || || +0.0025&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Alien mushroom || ? || -0.00000600 || || +0.00080 || || +0.00120 || -0.00480 ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* 1: Mushrooms only grows in darkness&lt;br /&gt;
* 2: Depends on temperature, alpha is max at ~18 °C and beta at 20 °C, the plant must be mature&lt;br /&gt;
* 3: Depends on the O2 and H2 concentration&lt;br /&gt;
* Comment: Plants have been observed to consume much less CO2 when the air has a low concentration of it, with O2 still being produced at full capacity. The reverse is also true for mushrooms. Water doesn&#039;t behave like this, below a certain amount a tray will no longer count as hydrated and the plant will start dying.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Efficiency of raw food and meals === &amp;lt;!--T:3--&amp;gt;&lt;br /&gt;
The following table compares the sustainability of everything eatable in &#039;&#039;meals&#039;&#039;:&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;(&#039;&#039;&#039;1 meal&#039;&#039;&#039; satisfies &#039;&#039;&#039;100% of hunger&#039;&#039;&#039;. In this way, &#039;&#039;&#039;1 [[muffin]]&#039;&#039;&#039; for example satisfies &#039;&#039;&#039;200% of hunger&#039;&#039;&#039;, which sufficient for &#039;&#039;&#039;2 full meals&#039;&#039;&#039;.)&amp;lt;/small&amp;gt;&lt;br /&gt;
* per &#039;&#039;&#039;unit&#039;&#039;&#039; &amp;lt;small&amp;gt;(e.g. 1 [[Cereal Bar|cereal bar]], 1 [[tomato]] or 1ml of [[milk]].)&amp;lt;/small&amp;gt;&lt;br /&gt;
* per &#039;&#039;&#039;stack&#039;&#039;&#039; &amp;lt;small&amp;gt;(e.g. 20 [[mushroom|mushrooms]] or 5 raw [[corn]] grains.)&amp;lt;/small&amp;gt;&lt;br /&gt;
* per &#039;&#039;&#039;plant&#039;&#039;&#039; / &#039;&#039;&#039;grow cycle&#039;&#039;&#039; &amp;lt;small&amp;gt;(e.g. some [[soybean|soybeans]] or [[pumpkin|pumpkins]], which grow to &#039;&#039;several&#039;&#039; &amp;lt;small&amp;gt;(more than 1)&amp;lt;/small&amp;gt; on their plants.)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Ordered List of plantables and cookables == &amp;lt;!--T:6--&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;ritz grid-container&amp;quot; dir=&amp;quot;ltr&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;table class=&amp;quot;waffle&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s0&amp;quot; dir=&amp;quot;ltr&amp;quot; rowspan=&amp;quot;3&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Name&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s0&amp;quot; dir=&amp;quot;ltr&amp;quot; colspan=&amp;quot;15&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Efficiency&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s0&amp;quot; dir=&amp;quot;ltr&amp;quot; rowspan=&amp;quot;3&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Ingredients&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s0&amp;quot; dir=&amp;quot;ltr&amp;quot; rowspan=&amp;quot;3&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;grows / prepare in&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s1&amp;quot; dir=&amp;quot;ltr&amp;quot; colspan=&amp;quot;7&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #efefef;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;(short range)&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s2&amp;quot; dir=&amp;quot;ltr&amp;quot; colspan=&amp;quot;4&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #cccccc;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;(medium range)&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s3&amp;quot; dir=&amp;quot;ltr&amp;quot; colspan=&amp;quot;4&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #999999;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;(long range)&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s4&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Portion&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s5&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;font-style: italic;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;of&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s4&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Unit&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s6&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: none;background-color: #efefef;text-align: center;font-style: italic;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;do&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s7 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-left: none;background-color: #efefef;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 52px; left: -3px;&amp;quot;&amp;gt;Hunger&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s8&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;⇒&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s9&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Meals&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s10&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;font-style: italic;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;by&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s11&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Stacks&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s12&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;⇒&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s13&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Meals&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s14&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;font-style: italic;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;by&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s15&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Yield&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s16&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;⇒&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s15&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Meals&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Fern]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Flower]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Milk]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1ml&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 237px; left: -1px;&amp;quot;&amp;gt;100ml [[Soy Oil]], 50g [[Fenoxitone Powder]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Chemistry Station]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Soy Oil]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1ml&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1 [[Soybean]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s26 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: none;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 123px; left: -1px;&amp;quot;&amp;gt;[[Reagent Processor]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Soybean]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;10%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;10,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Wheat]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;10%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;10,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Tomato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;30%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,3&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;6,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;3&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;18,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Pumpkin Pie]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;17%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;5,9&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;5,9&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;5,9&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 237px; left: -1px;&amp;quot;&amp;gt;100g [[Flour]], 1 [[Egg]], 10ml [[Milk]], 1 [[Pumpkin]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Mushroom]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;4,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;8,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Potato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;4,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;3&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;12,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Muffin]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;50%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;50g [[Flour]], 1 [[Egg]], 10ml [[Milk]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Fries]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;63%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0.5ml [[Soy Oil]], 1 [[Potato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Pumpkin]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Rice]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;50&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 81px; left: -1px;&amp;quot;&amp;gt;[[Baked potato]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;80%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,8&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,8&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,8&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1 [[Potato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 81px; left: -1px;&amp;quot;&amp;gt;[[Tomato Soup]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;70%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,7&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,7&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,7&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1 [[Tomato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Cereal Bar]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;60%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;50g [[Flour]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s27&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Corn]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s28&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s8&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s28&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s8&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s28&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s8&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s29&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s12&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s30&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;5&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s12&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s31&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s16&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s32&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s16&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s32&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s27&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s27&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Food storage ==&lt;br /&gt;
Food decays at a rate determined by the environment it is stored in. The main factors are gas composition of surrounding atmosphere, temperature of the surrounding atmosphere, pressure of the atmosphere, and whether or not the item is in a fridge. Decay rate multipliers for a given gas are listed below:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Gas !! Decay Rate Multiplier&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Nitrogen|Nitrogen]] || 0.6&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Carbon Dioxide|Carbon Dioxide]] || 0.8&lt;br /&gt;
|-&lt;br /&gt;
| Vacuum || 1&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Volatiles|Volatiles]] || 1&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Oxygen|Oxygen]] || 1.5&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Nitrous Oxide|Nitrous Oxide]] || 1.5&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Water|Water]] || 2&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Pollutant|Pollutant]] || 3&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Also not all foods decay here is the list of foods unaffected by decay.&lt;br /&gt;
*[[Cereal Bar]]&lt;br /&gt;
*[[Corn Soup]]&lt;br /&gt;
*[[Pumpkin Soup]]&lt;br /&gt;
*[[Tomato Soup]]&lt;br /&gt;
The Soups being canned goods, and the cereal bar being a processed food hence why they do not decay.&lt;br /&gt;
&lt;br /&gt;
The decay rate also contains a factor determined by temperature, the pressure of the environment, as the food that needs to be preserved now has to be above 101 kPa as preservation gets debuffed if its below 1 earth atmosphere. And the temperature decay factor is a complicated calculation summarized in the graph below ([https://www.reddit.com/r/Stationeers/comments/mrxwhp/decaying_food_gastemperature_data_math/guth0bt/ /u/LordRavenX, 04/2021]):&lt;br /&gt;
&lt;br /&gt;
[[File:FoodDecayFactorVsTempK.png|800px|Decay factor vs. temp Kelvin by [https://www.reddit.com/r/Stationeers/comments/mrxwhp/decaying_food_gastemperature_data_math/guth0bt/ /u/LordRavenX, 04/2021]]]&lt;br /&gt;
&lt;br /&gt;
Storage of food within a powered fridge also multiplies by a factor of 0.3, reducing decay by 70%.&lt;br /&gt;
&lt;br /&gt;
To minimize decay, food should be kept in a powered fridge in a nitrogen atmosphere of over 101 kPa at a temperature of at least 110 K (-163 °C) as the calculation has been tweaked to not penalize preservation for being to cold.&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Fertilizer&amp;diff=12966</id>
		<title>Fertilizer</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Fertilizer&amp;diff=12966"/>
		<updated>2022-08-21T16:41:14Z</updated>

		<summary type="html">&lt;p&gt;Wark: Created page with &amp;quot;version 0.2.3456  ==Description== Fertilizer makes plants grow faster and produce more. It can be made in the Portable Composter or Kit_(Advanced_Comp...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;version 0.2.3456&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
Fertilizer makes plants grow faster and produce more. It can be made in the [[Portable_Composter|Portable Composter]] or [[Kit_(Advanced_Composter)|Advanced Composter]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Performance==&lt;br /&gt;
Each fertilizer is made from 3 ingredients, which can be any combination of [[Biomass|biomass]], [[Decayed_food|decayed food]] or food (raw or cooked). When more than 3 ingredients have been added to a composter, the fertilizer will be based on the average of those values. Each type of ingredient have their own effect on the end result.&lt;br /&gt;
&lt;br /&gt;
The following data was collected on tomatoes only:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Fertilizer !! Number of uses !! Tomato growth speed, planting to mature !! Tomato yield (seeds and produce)&lt;br /&gt;
|-&lt;br /&gt;
| none || n/a || 616 seconds&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || 2&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 3 biomass || 7 || 416 seconds&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || 4&lt;br /&gt;
|-&lt;br /&gt;
| 3 raw food || 3 || 314 seconds&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || 5&lt;br /&gt;
|-&lt;br /&gt;
| 3 decayed food || 3 || 279 seconds&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || 4&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 1 biomass + 1 raw food + 1 decayed || 3 || 314 seconds&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || 4&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 2 biomass + 1 raw food || 4 || 349 seconds&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || 4&lt;br /&gt;
|-&lt;br /&gt;
| 2 biomass + 1 decayed || 4 || 336 seconds&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || 4&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 2 decayed + 1 biomass || 3 || 311 seconds&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || 4&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 2 raw food + 1 biomass || 3 || 327 seconds&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || 5&lt;br /&gt;
|-&lt;br /&gt;
| 1.5 raw food + 1.5 biomass || 4 || 330 seconds&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || 5&lt;br /&gt;
|}&lt;br /&gt;
*1: The recorded times varies with a few seconds for unknown reasons. However, two plants of the same type that was planted exactly at the same time will always mature at exactly the same time, as long as their access to light is equal. The grow times were measured using grow lights only (no sunlight). The growth times were recorded by using a [[Stop Watch]] (from Kit(Music)) and an [[Integrated Circuit (IC10)]], starting at Hydroponics Device Slot 0 &amp;quot;Occupied&amp;quot; = 1 and stopping at Hydroponics Device Slot 0 &amp;quot;Mature&amp;quot; = 1.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Producing decayed food==&lt;br /&gt;
The following conditions gave the shortest decay times.&lt;br /&gt;
* Gas: X&lt;br /&gt;
* Pressure: &amp;lt;0.2 kPa&lt;br /&gt;
* Temperature: &amp;gt;200 °C&lt;br /&gt;
* Cooked food decays slightly faster than raw&lt;br /&gt;
A [[Fridge Small]] can be used instead of building a room with this type of atmosphere. Gas at very low pressures can&#039;t be heated by a [[Pipe Heater]], the gas should be heated before reducing its pressure.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Base growth times for a selection of plants==&lt;br /&gt;
The recorded growth time is not exact, it varies with a few seconds during each measurement for unknown reasons.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Plant !! Growth time&lt;br /&gt;
|-&lt;br /&gt;
|Fern || 616 seconds&lt;br /&gt;
|-&lt;br /&gt;
|Darga fern || 925 seconds&lt;br /&gt;
|-&lt;br /&gt;
|Rice || 340 seconds&lt;br /&gt;
|-&lt;br /&gt;
|Tomato || 617 seconds&lt;br /&gt;
|-&lt;br /&gt;
|Potato || 618 seconds&lt;br /&gt;
|-&lt;br /&gt;
|Soybean || 620 seconds&lt;br /&gt;
|-&lt;br /&gt;
|Wheat || 620 seconds&lt;br /&gt;
|-&lt;br /&gt;
|Corn || 766 seconds&lt;br /&gt;
|-&lt;br /&gt;
|Pumpkin || 849 seconds&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=File:Nitrolyzer_and_N2O_Filtration_setup.jpg&amp;diff=12964</id>
		<title>File:Nitrolyzer and N2O Filtration setup.jpg</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=File:Nitrolyzer_and_N2O_Filtration_setup.jpg&amp;diff=12964"/>
		<updated>2022-08-21T12:23:13Z</updated>

		<summary type="html">&lt;p&gt;Wark: Wark uploaded a new version of File:Nitrolyzer and N2O Filtration setup.jpg&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Nitrolyzer and N2O Filtration setup&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Nitrolyzer&amp;diff=12963</id>
		<title>Nitrolyzer</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Nitrolyzer&amp;diff=12963"/>
		<updated>2022-08-21T12:06:38Z</updated>

		<summary type="html">&lt;p&gt;Wark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;version: 0.2.3566&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
The Nitrolyzer produces [[Nitrous_Oxide|Nitrous Oxide]] (N2O) from [[Oxygen|Oxygen]] (O2) and [[Nitrogen|Nitrogen]] (N2). &lt;br /&gt;
&lt;br /&gt;
==Usage==&lt;br /&gt;
The power consumption is always 20kW while N2O is being produced. If there is no O2:N2 gas mix available it will just pump gas and consume 50W.&lt;br /&gt;
&lt;br /&gt;
The ratio between the incoming O2 and N2 determines how fast the Nitrolyzer works. A 1:1 mix gives the fastest production rate, and this will produce 0.225 mol N2O every game-tick (0.5 seconds).&lt;br /&gt;
&lt;br /&gt;
Every tick the Nitrolyzer will take 1.5 mol from it&#039;s inputs, the pressure and temperature doesn&#039;t matter. If both inputs are connected it will try to take 0.75 mol from each one, if one pipe has too few moles available it will compensate by taking more from the other.&lt;br /&gt;
&lt;br /&gt;
The chemical reaction is NOT stoichiometric. Instead, when a fixed mol amount is used, the total mol of N2O produced is half of the sum of total O2 and total N2. &amp;lt;pre&amp;gt;&lt;br /&gt;
Examples: &lt;br /&gt;
50 mol O2 + 50 mol N2 -&amp;gt; 50 mol N2O&lt;br /&gt;
1 mol O2 + 99 mol N2 -&amp;gt; 50 mol N2O (this is very slow)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
The amount of N2O produced per tick can be calculated like this:&amp;lt;pre&amp;gt;&lt;br /&gt;
mol N2O per tick = lowest ratio / highest ratio * 0.75 * 30%&lt;br /&gt;
Examples:&lt;br /&gt;
An input mix of 50% O2 + 50% N2 will produce 50% / 50% * 0.75 * 30% = 0.225 mol N2O per tick&lt;br /&gt;
An input mix of 33.3% O2 + 66.7% N2 will produce 33.3% / 66.7% * 0.75 * 30% = 0.1125 mol N2O per tick&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
The O2:N2 ratio in the output is always the same as the O2:N2 ratio in the input. This makes it easy to reuse the O2:N2 gas mix after the N2O has been removed by a Filtration unit.&lt;br /&gt;
&lt;br /&gt;
[[File:Nitrolyzer and N2O Filtration setup.jpg|Nitrolyzer and N2O Filtration setup]]&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=File:Nitrolyzer_and_N2O_Filtration_setup.jpg&amp;diff=12962</id>
		<title>File:Nitrolyzer and N2O Filtration setup.jpg</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=File:Nitrolyzer_and_N2O_Filtration_setup.jpg&amp;diff=12962"/>
		<updated>2022-08-21T12:02:03Z</updated>

		<summary type="html">&lt;p&gt;Wark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Nitrolyzer and N2O Filtration setup&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Nitrolyzer&amp;diff=12961</id>
		<title>Nitrolyzer</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Nitrolyzer&amp;diff=12961"/>
		<updated>2022-08-21T11:53:32Z</updated>

		<summary type="html">&lt;p&gt;Wark: Created page with &amp;quot;version: 0.2.3566  ==Description== The Nitrolyzer produces Nitrous Oxide (N2O) from Oxygen (O2) and Nitrogen (N2).   ==Usage== The po...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;version: 0.2.3566&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
The Nitrolyzer produces [[Nitrous_Oxide|Nitrous Oxide]] (N2O) from [[Oxygen|Oxygen]] (O2) and [[Nitrogen|Nitrogen]] (N2). &lt;br /&gt;
&lt;br /&gt;
==Usage==&lt;br /&gt;
The power consumption is always 20kW while N2O is being produced. If there is no O2:N2 gas mix available it will just pump gas and consume 50W.&lt;br /&gt;
&lt;br /&gt;
The ratio between the incoming O2 and N2 determines how fast the Nitrolyzer works. A 1:1 mix gives the fastest production rate, and this will produce 0.225 mol N2O every game-tick (0.5 seconds).&lt;br /&gt;
&lt;br /&gt;
The chemical reaction is NOT stoichiometric. Instead, when a fixed mol amount is used, the total mol of N2O produced is half of the sum of total O2 and total N2. &amp;lt;pre&amp;gt;&lt;br /&gt;
Examples: &lt;br /&gt;
50 mol O2 + 50 mol N2 -&amp;gt; 50 mol N2O&lt;br /&gt;
1 mol O2 + 99 mol N2 -&amp;gt; 50 mol N2O (this is very slow)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Every tick the Nitrolyzer will take 1.5 mol from it&#039;s inputs, the pressure and temperature doesn&#039;t matter. If both inputs are connected it will try to take 0.75 mol from each one, if one pipe has too few moles available it will compensate by taking more from the other.&lt;br /&gt;
&lt;br /&gt;
The O2:N2 ratio in the output is always the same as the O2:N2 ratio in the input. This makes it easy to reuse the O2:N2 gas mix after the N2O has been removed by a Filtration unit.&lt;br /&gt;
&lt;br /&gt;
The amount of N2O produced per tick can be calculated like this:&amp;lt;pre&amp;gt;&lt;br /&gt;
mol N2O per tick = lowest ratio / highest ratio * 0.75 * 30%&lt;br /&gt;
Examples:&lt;br /&gt;
An input mix of 50% O2 + 50% N2 will produce 50% / 50% * 0.75 * 30% = 0.225 mol N2O per tick&lt;br /&gt;
An input mix of 33.3% O2 + 66.7% N2 will produce 33.3% / 66.7% * 0.75 * 30% = 0.1125 mol N2O per tick&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Solid_Fuel_Generator&amp;diff=12913</id>
		<title>Solid Fuel Generator</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Solid_Fuel_Generator&amp;diff=12913"/>
		<updated>2022-08-19T11:29:13Z</updated>

		<summary type="html">&lt;p&gt;Wark: a few tweaks, added charcoal, removed outdated information&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
{{Itembox&lt;br /&gt;
 | name        = Kit (Solid Generator)&lt;br /&gt;
 | image       = [[File:ItemKitSolidGenerator.png]]&lt;br /&gt;
 | createdwith = [[Electronics Printer]], [[Fabricator]]&lt;br /&gt;
 | cost        = 50x [[Iron]], 10x [[Copper]]&lt;br /&gt;
}}&lt;br /&gt;
{{Structurebox&lt;br /&gt;
 | name             = Solid Fuel Generator&lt;br /&gt;
 | prefab_hash      = 1293995736&lt;br /&gt;
 | image            = [[File:SolidFuelGenerator.png]]&lt;br /&gt;
 | power_usage      = 20KW generated per each tick&lt;br /&gt;
 | placed_with_item = [[Kit (Solid Generator)]]&lt;br /&gt;
 | placed_on_grid   = Large Grid&lt;br /&gt;
 | decon_with_tool1  = [[Hand Drill]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Description == &amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
The solid generator requires [[Coal|coal]] or [[Charcoal|charcoal]], the latter is renewable. It will output 20kW of power per game-tick, each Coal burns for 10 ticks and each Charcoal burns for up to 6 ticks (but less if a stack is used).&lt;br /&gt;
&lt;br /&gt;
== Notes == &amp;lt;!--T:3--&amp;gt;&lt;br /&gt;
The generator is not on-demand, meaning that it will burn the fuel even if nothing is using the power. Without a [[Stationary Battery|stationary battery]] most of the power generated by a Solid Generator will be lost. An [[Area Power Controller|area power controller]]([[Area Power Controller|APC]]) can charge its attached battery with 1 kW per tick, a [[Battery Charger Small|small battery charger]] can take 400W in each slot and a [[Battery Charger|battery charger]] can take 500W in each slot.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:4--&amp;gt;&lt;br /&gt;
With 18 [[Coal|coal]] pieces a [[Stationary Battery|stationary battery]] can be fully charged. This is about 3 [[Coal|coal]] pieces per indicator light.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:5--&amp;gt;&lt;br /&gt;
It&#039;s possible to use the regular [[Cable Coil|cable coil]] as long as 5kW or less of the power produced is used. This is because a cable will only burn when the power usage exceeds its limit, it will never burn from a high power generation. A Stationary Battery will always take all the power that is available, which in this case means 20kW, only a [[Cable_Coil_(Heavy)|heavy cable coil]] can handle that much.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:6--&amp;gt;&lt;br /&gt;
The Solid Generator have no connection for a waste pipe, all the hot exhaust gases are just released around it. This will kill plants and harm non-robotic player characters, so it&#039;s best used outdoors or in an airtight room. When Coal is burned, each one will release 10 mol of CO2 and 3 mol of X. When Charcoal is burned, each one will release 3 mol of CO2 and 3 mol of X.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Charcoal&amp;diff=12912</id>
		<title>Charcoal</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Charcoal&amp;diff=12912"/>
		<updated>2022-08-19T10:01:52Z</updated>

		<summary type="html">&lt;p&gt;Wark: added headlines, a little bit about gases and information about burning charcoal as fuel from a reddit post&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;game version: 0.2.3566&lt;br /&gt;
&lt;br /&gt;
==Making charcoal==&lt;br /&gt;
Charcoal is an ore. But it can&#039;t be mined, it must be made from organic matter.&lt;br /&gt;
&lt;br /&gt;
Plants, cooked food, decayed food, or seeds gives one reagents mix when going through the [[Special:MyLanguage/Recycler|Recycler]].&lt;br /&gt;
&lt;br /&gt;
This reagent mix can be put it into a [[Special:MyLanguage/Centrifuge|Centrifuge]], [[Special:MyLanguage/Arc Furnace|Arc Furnace]], or [[Special:MyLanguage/Furnace|Furnace]], which gives one [[Special:MyLanguage/Biomass|Biomass]].&lt;br /&gt;
&lt;br /&gt;
The Biomass can then be cooked in a Furnace at over 580K (or in the Arc Furnace, which consumes energy), this will produce one Charcoal per Biomass.&lt;br /&gt;
&lt;br /&gt;
The overall ratio is 1 Charcoal for every 1 plant/cooked food/decayed food/seed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Steel from iron and charcoal==&lt;br /&gt;
Charcoal can replace Coal when making [[Special:MyLanguage/Steel|Steel]]. The ratio is the same, 1 Charcoal for every 3 Iron ore.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Gases==&lt;br /&gt;
When Charcoal is burned in a Solid Generator it will release 3 mol CO2 and 3 mol of X. These gases can also be released in a Furnace or Arc-Furnace without destroying the Charcoal.&lt;br /&gt;
&lt;br /&gt;
When Biomass is converted to Charcoal, each one will release 8 mol of Volatiles and 4 mol of X.&lt;br /&gt;
&lt;br /&gt;
With Carbon Dioxide from Charcoal, Volatiles from Biomass, and Oxygen from living plants, it becomes possible to create a renewable cycle that creates and consumes these three gases. It&#039;s preferable to keep the level of Carbon Dioxide in the plants atmosphere as low as possible without allowing it to reach zero. This is because plants in the game will consume less Carbon Dioxide when there is less of it available, while still being able to grow at a normal rate and produce Oxygen at full capacity.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Fuel==&lt;br /&gt;
Charcoal can be burned in the [[Special:MyLanguage/Solid Fuel Generator|Solid Fuel Generator]] to produce power. But it does not behave like regular Coal does &amp;lt;ref&amp;gt;Source:  https://www.reddit.com/r/Stationeers/comments/wrshsn/how_to_burn_charcoal_with_100_efficiency_in_a/&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
When 1 Charcoal is burned, it will burn for 6 game-ticks (3 seconds) and release 20 kW of power each tick, for a total of 120 kW.&lt;br /&gt;
&lt;br /&gt;
When a stack of Charcoal is burned, they will not burn to completion, they will only burn for ~2 game-ticks which gives ~40 kW power each. Only ~33% of the available power is obtained.&lt;br /&gt;
&lt;br /&gt;
With a little bit of automation it&#039;s possible to release 100% of the energy from a stack of Charcoal. A Stacker controlled by an IC can be used to release the Charcoal one by one every 8 game-ticks, this is enough time for each Charcoal to always burn to completion.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Example IC code - releasing Charcoal from a Stacker to a Solid Generator to get 100% power efficiency:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
alias Stacker d0&lt;br /&gt;
&lt;br /&gt;
s Stacker Mode 1&lt;br /&gt;
s Stacker Setting 1&lt;br /&gt;
&lt;br /&gt;
MaxCharcoalPower:&lt;br /&gt;
yield&lt;br /&gt;
ls r0 Stacker 2 Occupied&lt;br /&gt;
beqz r0 MaxCharcoalPower&lt;br /&gt;
s Stacker Output 0&lt;br /&gt;
sleep 3.5&lt;br /&gt;
j MaxCharcoalPower&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==References==&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Power_Transmitter&amp;diff=12910</id>
		<title>Power Transmitter</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Power_Transmitter&amp;diff=12910"/>
		<updated>2022-08-18T23:05:13Z</updated>

		<summary type="html">&lt;p&gt;Wark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
{{Itembox&lt;br /&gt;
 | name        = Kit (PowerTransmitter) [[File:Kit (PowerTransmitter).jpg|thumb|Creates whats below]]&lt;br /&gt;
 | createdwith = [[Electronics Printer]]&lt;br /&gt;
 | cost        = 5 [[Gold]], 7 [[Copper]], 3 [[Steel]]&lt;br /&gt;
 | stacks      = 10&lt;br /&gt;
}}&lt;br /&gt;
{{Structurebox&lt;br /&gt;
 | name             = Power Transmitter [[File:Microwave Power Transmitter.jpg|thumb|]]&lt;br /&gt;
 | power_usage      = 10W&lt;br /&gt;
 | placed_with_item = [[Kit (PowerTransmitter)]]&lt;br /&gt;
 | placed_on_grid   = Large Grid&lt;br /&gt;
 | build states     = Three&lt;br /&gt;
 | decon_with_tool1 = [[Hand Drill]]&lt;br /&gt;
 | item_rec1        = 3x [[Electronic Parts]]&lt;br /&gt;
 | decon_with_tool2 = [[Hand Drill]]&lt;br /&gt;
 | item_rec2        = 2x [[Iron Sheets]]&lt;br /&gt;
 | decon_with_tool3 = [[Hand Drill]]&lt;br /&gt;
 | item_rec3        = [[Kit (PowerTransmitter)]]&lt;br /&gt;
}}&lt;br /&gt;
{{Structurebox&lt;br /&gt;
 | name             = Power Receiver [[File:Microwave Power Receiver.jpg|thumb|]]&lt;br /&gt;
 | power_usage      = 10W&lt;br /&gt;
 | placed_with_item = [[Kit (PowerTransmitter)]]&lt;br /&gt;
 | placed_on_grid   = Large Grid&lt;br /&gt;
 | build states     = Three&lt;br /&gt;
 | decon_with_tool1 = [[Hand Drill]]&lt;br /&gt;
 | item_rec1        = 1x [[Electronic Parts]]&lt;br /&gt;
 | decon_with_tool2 = [[Hand Drill]]&lt;br /&gt;
 | item_rec2        = 2x [[Iron Sheets]]&lt;br /&gt;
 | decon_with_tool3 = [[Hand Drill]]&lt;br /&gt;
 | item_rec3        = [[Kit (PowerTransmitter)]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Description == &amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
The Norsec Wireless Power Transmitter is an uni-directional, A-to B, far field microwave electical transmission system. The rotatable base transmitter delivers a narrow, non-lethal Microwave beam to a dedicated base receiver.&lt;br /&gt;
&lt;br /&gt;
The transmitter must be aligned to the base station in order to transmit any power. The brightness of the transmitter&#039;s collimator arc provides an indication of transmission intensity. Note that there is an attrition over longer ranges, so the unit requrires more power over greater distances to deliver the same output.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==General behaviour==&lt;br /&gt;
*5kW is the maximum PowerPotential that can be transmitted, this amount is reduced by distance.&lt;br /&gt;
*Unaffected by storms.&lt;br /&gt;
*Using two emitters on the same reciever doesn&#039;t appear to work&lt;br /&gt;
*A Logic Transmitter can mirror recievers, but not emitters.&lt;br /&gt;
*The coordinates of these devices will change slightly when the head moves.&lt;br /&gt;
*Both structures and terrain will block the beam. Once a beam is formed it will no longer be blocked by building things between them.&lt;br /&gt;
*When these devices are built their placement rotation is important. The easiest way is to point the data-port to the north (0° on the space suit compass), otherwise a horizontal correction angle must be added or subtracted when doing the math.&lt;br /&gt;
*When the device head is being rotated horizontally it is rotating in the opposite of the expected direction, this must be compensated for when doing the math.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Range==&lt;br /&gt;
===Power transfer with 4000 W PowerPotential===&lt;br /&gt;
98m = 3630 W (-0.37kW)&lt;br /&gt;
&amp;lt;br&amp;gt;198m = 2863 W (-1.14kW)&lt;br /&gt;
&amp;lt;br&amp;gt;300m = 1409 W (-2.59kW)&lt;br /&gt;
&amp;lt;br&amp;gt;400m = 0 W&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Power transfer with 5000 W PowerPotential===&lt;br /&gt;
98m = 4630 W (-0.37kW)&lt;br /&gt;
&amp;lt;br&amp;gt;198m = 3863 W (-1.14kW)&lt;br /&gt;
&amp;lt;br&amp;gt;300m = 2409 W (-2.59kW)&lt;br /&gt;
&amp;lt;br&amp;gt;400m = 651 W (-4.35kW)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Alignment formulas==&lt;br /&gt;
All dataports points north, the delta values are calculated from: &amp;quot;reciever coordinate&amp;quot; - &amp;quot;emitter coordinate&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Horizontal for &amp;quot;emitter&amp;quot; = atan2( delta-x / delta-z ) * 180 / pi&lt;br /&gt;
&amp;lt;br&amp;gt;Vertical for &amp;quot;emitter&amp;quot; = 90 + atan( delta-y / sqrt( (delta-z)^2 + (delta-x)^2 ) ) * 180 / pi&lt;br /&gt;
&lt;br /&gt;
Horizontal for &amp;quot;reciever&amp;quot; = 180 + Horizontal for &amp;quot;emitter&amp;quot;&lt;br /&gt;
&amp;lt;br&amp;gt;Vertical for &amp;quot;reciever&amp;quot; = 180 - Vertical for &amp;quot;emitter&amp;quot; &lt;br /&gt;
&lt;br /&gt;
Comments:&lt;br /&gt;
&amp;lt;br&amp;gt;When the data-port points north, +0° is added to the Horizontal rotation.&lt;br /&gt;
&amp;lt;br&amp;gt;When the Vertical rotation is 90° the device head points towards the horizon, 90° must be added because when delta-y is 0 (no height difference) then atan() will be 0&lt;br /&gt;
&amp;lt;br&amp;gt;Both atan2() and atan() uses radians for the angle, radians are converted to degrees by multiplying with 180 / pi&lt;br /&gt;
&amp;lt;br&amp;gt;atan2(x/z) should be z/x in a normal situation, but it has been inverted to compensate for the devices inverted rotation direction&lt;br /&gt;
&amp;lt;br&amp;gt;atan(y/x) uses Pythagoras theorem to set x as the horizontal-plane distance between emitter and reciever&lt;br /&gt;
&lt;br /&gt;
==IC script==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
##POWER TRANSMITTER ALIGNMENT##&lt;br /&gt;
#When the alignment is complete, this IC housing..&lt;br /&gt;
#..and the Logic Transmitter can be unpowered&lt;br /&gt;
&lt;br /&gt;
#Power Transmitter data-port must point NORTH&lt;br /&gt;
#Power Reciever data-port must point NORTH&lt;br /&gt;
&lt;br /&gt;
#transmitter = Microwave Power Transmitter&lt;br /&gt;
alias transmitter d0&lt;br /&gt;
#reciever = Logic Transmitter linked to the..&lt;br /&gt;
#..Microwave Power Reciever&lt;br /&gt;
alias reciever d1&lt;br /&gt;
&lt;br /&gt;
alias deltaX r13&lt;br /&gt;
alias deltaZ r14&lt;br /&gt;
alias deltaY r15&lt;br /&gt;
define pi 3.1415&lt;br /&gt;
&lt;br /&gt;
main:&lt;br /&gt;
yield&lt;br /&gt;
#calculate delta values&lt;br /&gt;
l r0 reciever PositionX&lt;br /&gt;
l r1 transmitter PositionX&lt;br /&gt;
sub deltaX r0 r1&lt;br /&gt;
l r0 reciever PositionZ&lt;br /&gt;
l r1 transmitter PositionZ&lt;br /&gt;
sub deltaZ r0 r1&lt;br /&gt;
l r0 reciever PositionY&lt;br /&gt;
l r1 transmitter PositionY&lt;br /&gt;
sub deltaY r0 r1&lt;br /&gt;
&lt;br /&gt;
#Horizontal for &amp;quot;transmitter&amp;quot;&lt;br /&gt;
#atan2(deltaX/deltaZ)*180/pi&lt;br /&gt;
atan2 r0 deltaX deltaZ&lt;br /&gt;
mul r0 r0 180&lt;br /&gt;
div r0 r0 pi&lt;br /&gt;
s transmitter Horizontal r0&lt;br /&gt;
&lt;br /&gt;
#Horizontal for &amp;quot;reciever&amp;quot;&lt;br /&gt;
#180 + Horizontal for &amp;quot;emitter&amp;quot;&lt;br /&gt;
add r0 180 r0&lt;br /&gt;
s reciever Horizontal r0&lt;br /&gt;
&lt;br /&gt;
#Vertical for &amp;quot;transmitter&amp;quot;&lt;br /&gt;
#atan(deltaY/sqrt(deltaX^2+deltaZ^2))*180/pi+90&lt;br /&gt;
mul r0 deltaX deltaX&lt;br /&gt;
mul r1 deltaZ deltaZ&lt;br /&gt;
add r0 r0 r1&lt;br /&gt;
sqrt r0 r0&lt;br /&gt;
div r0 deltaY r0&lt;br /&gt;
atan r0 r0&lt;br /&gt;
mul r0 r0 180&lt;br /&gt;
div r0 r0 pi&lt;br /&gt;
add r0 r0 90&lt;br /&gt;
s transmitter Vertical r0&lt;br /&gt;
&lt;br /&gt;
#Vertical for &amp;quot;reciever&amp;quot;&lt;br /&gt;
#180 - Vertical for &amp;quot;transmitter&amp;quot;&lt;br /&gt;
sub r0 180 r0&lt;br /&gt;
s reciever Vertical r0&lt;br /&gt;
j main&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Power_Transmitter&amp;diff=12832</id>
		<title>Power Transmitter</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Power_Transmitter&amp;diff=12832"/>
		<updated>2022-08-05T12:05:46Z</updated>

		<summary type="html">&lt;p&gt;Wark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
{{Itembox&lt;br /&gt;
 | name        = Kit (PowerTransmitter) [[File:Kit (PowerTransmitter).jpg|thumb|Creates whats below]]&lt;br /&gt;
 | createdwith = [[Electronics Printer]]&lt;br /&gt;
 | cost        = 5 [[Gold]], 7 [[Copper]], 3 [[Steel]]&lt;br /&gt;
 | stacks      = 10&lt;br /&gt;
}}&lt;br /&gt;
{{Structurebox&lt;br /&gt;
 | name             = Power Transmitter [[File:Microwave Power Transmitter.jpg|thumb|]]&lt;br /&gt;
 | power_usage      = 10W&lt;br /&gt;
 | placed_with_item = [[Kit (PowerTransmitter)]]&lt;br /&gt;
 | placed_on_grid   = Large Grid&lt;br /&gt;
 | build states     = Three&lt;br /&gt;
 | decon_with_tool1 = [[Hand Drill]]&lt;br /&gt;
 | item_rec1        = 3x [[Electronic Parts]]&lt;br /&gt;
 | decon_with_tool2 = [[Hand Drill]]&lt;br /&gt;
 | item_rec2        = 2x [[Iron Sheets]]&lt;br /&gt;
 | decon_with_tool3 = [[Hand Drill]]&lt;br /&gt;
 | item_rec3        = [[Kit (PowerTransmitter)]]&lt;br /&gt;
}}&lt;br /&gt;
{{Structurebox&lt;br /&gt;
 | name             = Power Receiver [[File:Microwave Power Receiver.jpg|thumb|]]&lt;br /&gt;
 | power_usage      = 10W&lt;br /&gt;
 | placed_with_item = [[Kit (PowerTransmitter)]]&lt;br /&gt;
 | placed_on_grid   = Large Grid&lt;br /&gt;
 | build states     = Three&lt;br /&gt;
 | decon_with_tool1 = [[Hand Drill]]&lt;br /&gt;
 | item_rec1        = 1x [[Electronic Parts]]&lt;br /&gt;
 | decon_with_tool2 = [[Hand Drill]]&lt;br /&gt;
 | item_rec2        = 2x [[Iron Sheets]]&lt;br /&gt;
 | decon_with_tool3 = [[Hand Drill]]&lt;br /&gt;
 | item_rec3        = [[Kit (PowerTransmitter)]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Description == &amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
The Norsec Wireless Power Transmitter is an uni-directional, A-to B, far field microwave electical transmission system. The rotatable base transmitter delivers a narrow, non-lethal Microwave beam to a dedicated base receiver.&lt;br /&gt;
&lt;br /&gt;
The transmitter must be aligned to the base station in order to transmit any power. The brightness of the transmitter&#039;s collimator arc provides an indication of transmission intensity. Note that there is an attrition over longer ranges, so the unit requrires more power over greater distances to deliver the same output.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==General behaviour==&lt;br /&gt;
*5kW is the maximum PowerPotential that can be transmitted, this amount is reduced by distance.&lt;br /&gt;
*Unaffected by storms.&lt;br /&gt;
*Using two emitters on the same reciever doesn&#039;t appear to work&lt;br /&gt;
*A Logic Transmitter can mirror recievers, but not emitters.&lt;br /&gt;
*The coordinates of these devices will change slightly when the head moves.&lt;br /&gt;
*Both structures and terrain will block the beam. Once a beam is formed it will no longer be blocked by building things between them.&lt;br /&gt;
*When these devices are built their placement rotation is important. The easiest way is to point the data-port to the north (0° on the space suit compass), otherwise a horizontal correction angle must be added or subtracted when doing the math.&lt;br /&gt;
*When the device head is being rotated horizontally it is rotating in the opposite of the expected direction, this must be compensated for when doing the math.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Range==&lt;br /&gt;
===Power transfer with 4000 W PowerPotential===&lt;br /&gt;
98m = 3630 W (-0.37kW)&lt;br /&gt;
&amp;lt;br&amp;gt;198m = 2863 W (-1.14kW)&lt;br /&gt;
&amp;lt;br&amp;gt;300m = 1409 W (-2.59kW)&lt;br /&gt;
&amp;lt;br&amp;gt;400m = 0 W&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Power transfer with 5000 W PowerPotential===&lt;br /&gt;
98m = 4630 W (-0.37kW)&lt;br /&gt;
&amp;lt;br&amp;gt;198m = 3863 W (-1.14kW)&lt;br /&gt;
&amp;lt;br&amp;gt;300m = 2409 W (-2.59kW)&lt;br /&gt;
&amp;lt;br&amp;gt;400m = 651 W (-4.35kW)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Alignment formulas==&lt;br /&gt;
All dataports points north, the delta values are calculated from: &amp;quot;reciever coordinate&amp;quot; - &amp;quot;emitter coordinate&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Horizontal for &amp;quot;emitter&amp;quot; = atan2( delta-x / delta-z ) * 180 / pi&lt;br /&gt;
&amp;lt;br&amp;gt;Vertical for &amp;quot;emitter&amp;quot; = 90 + atan( delta-y / sqrt( (delta-z)^2 + (delta-x)^2 ) ) * 180 / pi&lt;br /&gt;
&lt;br /&gt;
Horizontal for &amp;quot;reciever&amp;quot; = 180 + Horizontal for &amp;quot;emitter&amp;quot;&lt;br /&gt;
&amp;lt;br&amp;gt;Vertical for &amp;quot;reciever&amp;quot; = 180 - Vertical for &amp;quot;emitter&amp;quot; &lt;br /&gt;
&lt;br /&gt;
Comments:&lt;br /&gt;
&amp;lt;br&amp;gt;When the data-port points north, +0° is added to the Horizontal rotation.&lt;br /&gt;
&amp;lt;br&amp;gt;When the Vertical rotation is 90° the device head points towards the horizon, 90° must be added because when delta-y is 0 (no height difference) then atan() will be 0&lt;br /&gt;
&amp;lt;br&amp;gt;Both atan2() and atan() uses radians for the angle, radians are converted to degrees by multiplying with 180 / pi&lt;br /&gt;
&amp;lt;br&amp;gt;atan2(x/z) should be z/x in a normal situation, but it has been inverted to compensate for the devices inverted rotation direction&lt;br /&gt;
&amp;lt;br&amp;gt;atan(y/x) uses Pythagoras theorem to set x as the horizontal-plane distance between emitter and reciever&lt;br /&gt;
&lt;br /&gt;
==IC script==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
##POWER TRANSMITTER ALIGNMENT##&lt;br /&gt;
#When the alignment is complete, this IC housing..&lt;br /&gt;
#..and the Logic Transmitter can be unpowered&lt;br /&gt;
&lt;br /&gt;
#Transmitter/Reciever data-ports must point NORTH&lt;br /&gt;
&lt;br /&gt;
#transmitter = Microwave Power Transmitter&lt;br /&gt;
alias transmitter d0&lt;br /&gt;
#reciever = Logic Transmitter linked to the..&lt;br /&gt;
#..Microwave Power Reciever&lt;br /&gt;
alias reciever d1&lt;br /&gt;
&lt;br /&gt;
alias deltaX r13&lt;br /&gt;
alias deltaZ r14&lt;br /&gt;
alias deltaY r15&lt;br /&gt;
define pi 3.1415&lt;br /&gt;
&lt;br /&gt;
main:&lt;br /&gt;
yield&lt;br /&gt;
#calculate delta values&lt;br /&gt;
l r0 reciever PositionX&lt;br /&gt;
l r1 transmitter PositionX&lt;br /&gt;
sub deltaX r0 r1&lt;br /&gt;
l r0 reciever PositionZ&lt;br /&gt;
l r1 transmitter PositionZ&lt;br /&gt;
sub deltaZ r0 r1&lt;br /&gt;
l r0 reciever PositionY&lt;br /&gt;
l r1 transmitter PositionY&lt;br /&gt;
sub deltaY r0 r1&lt;br /&gt;
&lt;br /&gt;
#Horizontal for &amp;quot;transmitter&amp;quot;&lt;br /&gt;
#atan2(deltaX/deltaZ)*180/pi&lt;br /&gt;
atan2 r0 deltaX deltaZ&lt;br /&gt;
mul r0 r0 180&lt;br /&gt;
div r0 r0 pi&lt;br /&gt;
s transmitter Horizontal r0&lt;br /&gt;
&lt;br /&gt;
#Horizontal for &amp;quot;reciever&amp;quot;&lt;br /&gt;
#180 + Horizontal for &amp;quot;emitter&amp;quot;&lt;br /&gt;
add r0 180 r0&lt;br /&gt;
s reciever Horizontal r0&lt;br /&gt;
&lt;br /&gt;
#Vertical for &amp;quot;transmitter&amp;quot;&lt;br /&gt;
#atan(deltaY/sqrt(deltaX^2+deltaZ^2))*180/pi+90&lt;br /&gt;
mul r0 deltaX deltaX&lt;br /&gt;
mul r1 deltaZ deltaZ&lt;br /&gt;
add r0 r0 r1&lt;br /&gt;
sqrt r0 r0&lt;br /&gt;
div r0 deltaY r0&lt;br /&gt;
atan r0 r0&lt;br /&gt;
mul r0 r0 180&lt;br /&gt;
div r0 r0 pi&lt;br /&gt;
add r0 r0 90&lt;br /&gt;
s transmitter Vertical r0&lt;br /&gt;
&lt;br /&gt;
#Vertical for &amp;quot;reciever&amp;quot;&lt;br /&gt;
#180 - Vertical for &amp;quot;transmitter&amp;quot;&lt;br /&gt;
sub r0 180 r0&lt;br /&gt;
s reciever Vertical r0&lt;br /&gt;
j main&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Power_Transmitter&amp;diff=12831</id>
		<title>Power Transmitter</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Power_Transmitter&amp;diff=12831"/>
		<updated>2022-08-05T10:35:07Z</updated>

		<summary type="html">&lt;p&gt;Wark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
{{Itembox&lt;br /&gt;
 | name        = Kit (PowerTransmitter) [[File:Kit (PowerTransmitter).jpg|thumb|Creates whats below]]&lt;br /&gt;
 | createdwith = [[Electronics Printer]]&lt;br /&gt;
 | cost        = 5 [[Gold]], 7 [[Copper]], 3 [[Steel]]&lt;br /&gt;
 | stacks      = 10&lt;br /&gt;
}}&lt;br /&gt;
{{Structurebox&lt;br /&gt;
 | name             = Power Transmitter [[File:Microwave Power Transmitter.jpg|thumb|]]&lt;br /&gt;
 | power_usage      = 10W&lt;br /&gt;
 | placed_with_item = [[Kit (PowerTransmitter)]]&lt;br /&gt;
 | placed_on_grid   = Large Grid&lt;br /&gt;
 | build states     = Three&lt;br /&gt;
 | decon_with_tool1 = [[Hand Drill]]&lt;br /&gt;
 | item_rec1        = 3x [[Electronic Parts]]&lt;br /&gt;
 | decon_with_tool2 = [[Hand Drill]]&lt;br /&gt;
 | item_rec2        = 2x [[Iron Sheets]]&lt;br /&gt;
 | decon_with_tool3 = [[Hand Drill]]&lt;br /&gt;
 | item_rec3        = [[Kit (PowerTransmitter)]]&lt;br /&gt;
}}&lt;br /&gt;
{{Structurebox&lt;br /&gt;
 | name             = Power Receiver [[File:Microwave Power Receiver.jpg|thumb|]]&lt;br /&gt;
 | power_usage      = 10W&lt;br /&gt;
 | placed_with_item = [[Kit (PowerTransmitter)]]&lt;br /&gt;
 | placed_on_grid   = Large Grid&lt;br /&gt;
 | build states     = Three&lt;br /&gt;
 | decon_with_tool1 = [[Hand Drill]]&lt;br /&gt;
 | item_rec1        = 1x [[Electronic Parts]]&lt;br /&gt;
 | decon_with_tool2 = [[Hand Drill]]&lt;br /&gt;
 | item_rec2        = 2x [[Iron Sheets]]&lt;br /&gt;
 | decon_with_tool3 = [[Hand Drill]]&lt;br /&gt;
 | item_rec3        = [[Kit (PowerTransmitter)]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Description == &amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
The Norsec Wireless Power Transmitter is an uni-directional, A-to B, far field microwave electical transmission system. The rotatable base transmitter delivers a narrow, non-lethal Microwave beam to a dedicated base receiver.&lt;br /&gt;
&lt;br /&gt;
The transmitter must be aligned to the base station in order to transmit any power. The brightness of the transmitter&#039;s collimator arc provides an indication of transmission intensity. Note that there is an attrition over longer ranges, so the unit requrires more power over greater distances to deliver the same output.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==General behaviour==&lt;br /&gt;
*5kW is the maximum PowerPotential that can be transmitted, this amount is reduced by distance.&lt;br /&gt;
*Unaffected by storms.&lt;br /&gt;
*Using two emitters on the same reciever doesn&#039;t appear to work&lt;br /&gt;
*A Logic Transmitter can mirror recievers, but not emitters.&lt;br /&gt;
*The coordinates of these devices will change slightly when the head moves.&lt;br /&gt;
*Both structures and terrain will block the beam. Once a beam is formed it will no longer be blocked by building things between them.&lt;br /&gt;
*When these devices are built their placement rotation is important. By pointing the data-port to the north (0°), the devices initial horizontal rotation is also 0°, which makes the math a little easier.&lt;br /&gt;
*When the device head is rotated horizontally they are moving in the opposite of the expected direction, this flipped behaviour must be compensated for.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Range==&lt;br /&gt;
===Power transfer with 4000 W PowerPotential===&lt;br /&gt;
98m = 3630 W (-0.37kW)&lt;br /&gt;
&amp;lt;br&amp;gt;198m = 2863 W (-1.14kW)&lt;br /&gt;
&amp;lt;br&amp;gt;300m = 1409 W (-2.59kW)&lt;br /&gt;
&amp;lt;br&amp;gt;400m = 0 W&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Power transfer with 5000 W PowerPotential===&lt;br /&gt;
98m = 4630 W (-0.37kW)&lt;br /&gt;
&amp;lt;br&amp;gt;198m = 3863 W (-1.14kW)&lt;br /&gt;
&amp;lt;br&amp;gt;300m = 2409 W (-2.59kW)&lt;br /&gt;
&amp;lt;br&amp;gt;400m = 651 W (-4.35kW)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Alignment formulas==&lt;br /&gt;
All dataports points north, the delta values are calculated from: &amp;quot;reciever coordinate&amp;quot; - &amp;quot;emitter coordinate&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Horizontal for &amp;quot;emitter&amp;quot; = atan2( delta-x / delta-z ) * 180 / pi&lt;br /&gt;
&amp;lt;br&amp;gt;Vertical for &amp;quot;emitter&amp;quot; = 90 + atan( delta-y / sqrt( (delta-z)^2 + (delta-x)^2 ) ) * 180 / pi&lt;br /&gt;
&lt;br /&gt;
Horizontal for &amp;quot;reciever&amp;quot; = 180 + Horizontal for &amp;quot;emitter&amp;quot;&lt;br /&gt;
&amp;lt;br&amp;gt;Vertical for &amp;quot;reciever&amp;quot; = 180 - Vertical for &amp;quot;emitter&amp;quot; &lt;br /&gt;
&lt;br /&gt;
Comments:&lt;br /&gt;
&amp;lt;br&amp;gt;When the data-port points north, +0° is added to the Horizontal rotation.&lt;br /&gt;
&amp;lt;br&amp;gt;When the Vertical rotation is 90° the device head points towards the horizon, this matters because when delta-y is 0 then atan() is 0&lt;br /&gt;
&amp;lt;br&amp;gt;Both atan2() and atan() uses radians for the angle, radians are converted to degrees by multiplying with 180/pi&lt;br /&gt;
&amp;lt;br&amp;gt;atan2(x/z) is usually written as z/x, this inversion is made to compensate for the devices inverted rotation direction&lt;br /&gt;
&amp;lt;br&amp;gt;atan(y/x) uses Pythagoras theorem to calculate x as the horizontal-plane hypothenuse of delta-x and delta-z&lt;br /&gt;
&lt;br /&gt;
==IC script==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
##POWER TRANSMITTER ALIGNMENT##&lt;br /&gt;
#When the alignment is complete, this IC housing..&lt;br /&gt;
#..and the Logic Transmitter can be unpowered&lt;br /&gt;
&lt;br /&gt;
#Transmitter/Reciever data-ports must point NORTH&lt;br /&gt;
&lt;br /&gt;
#transmitter = Microwave Power Transmitter&lt;br /&gt;
alias transmitter d0&lt;br /&gt;
#reciever = Logic Transmitter linked to the..&lt;br /&gt;
#..Microwave Power Reciever&lt;br /&gt;
alias reciever d1&lt;br /&gt;
&lt;br /&gt;
alias deltaX r13&lt;br /&gt;
alias deltaZ r14&lt;br /&gt;
alias deltaY r15&lt;br /&gt;
define pi 3.1415&lt;br /&gt;
&lt;br /&gt;
main:&lt;br /&gt;
yield&lt;br /&gt;
#calculate delta values&lt;br /&gt;
l r0 reciever PositionX&lt;br /&gt;
l r1 transmitter PositionX&lt;br /&gt;
sub deltaX r0 r1&lt;br /&gt;
l r0 reciever PositionZ&lt;br /&gt;
l r1 transmitter PositionZ&lt;br /&gt;
sub deltaZ r0 r1&lt;br /&gt;
l r0 reciever PositionY&lt;br /&gt;
l r1 transmitter PositionY&lt;br /&gt;
sub deltaY r0 r1&lt;br /&gt;
&lt;br /&gt;
#Horizontal for &amp;quot;transmitter&amp;quot;&lt;br /&gt;
#atan2(deltaX/deltaZ)*180/pi&lt;br /&gt;
atan2 r0 deltaX deltaZ&lt;br /&gt;
mul r0 r0 180&lt;br /&gt;
div r0 r0 pi&lt;br /&gt;
s transmitter Horizontal r0&lt;br /&gt;
&lt;br /&gt;
#Horizontal for &amp;quot;reciever&amp;quot;&lt;br /&gt;
#180 + Horizontal for &amp;quot;emitter&amp;quot;&lt;br /&gt;
add r0 180 r0&lt;br /&gt;
s reciever Horizontal r0&lt;br /&gt;
&lt;br /&gt;
#Vertical for &amp;quot;transmitter&amp;quot;&lt;br /&gt;
#atan(deltaY/sqrt(deltaX^2+deltaZ^2))*180/pi+90&lt;br /&gt;
mul r0 deltaX deltaX&lt;br /&gt;
mul r1 deltaZ deltaZ&lt;br /&gt;
add r0 r0 r1&lt;br /&gt;
sqrt r0 r0&lt;br /&gt;
div r0 deltaY r0&lt;br /&gt;
atan r0 r0&lt;br /&gt;
mul r0 r0 180&lt;br /&gt;
div r0 r0 pi&lt;br /&gt;
add r0 r0 90&lt;br /&gt;
s transmitter Vertical r0&lt;br /&gt;
&lt;br /&gt;
#Vertical for &amp;quot;reciever&amp;quot;&lt;br /&gt;
#180 - Vertical for &amp;quot;transmitter&amp;quot;&lt;br /&gt;
sub r0 180 r0&lt;br /&gt;
s reciever Vertical r0&lt;br /&gt;
j main&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Power_Transmitter&amp;diff=12830</id>
		<title>Power Transmitter</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Power_Transmitter&amp;diff=12830"/>
		<updated>2022-08-05T08:59:46Z</updated>

		<summary type="html">&lt;p&gt;Wark: made math formuals less confusing, added an IC10 script based on the math&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
{{Itembox&lt;br /&gt;
 | name        = Kit (PowerTransmitter) [[File:Kit (PowerTransmitter).jpg|thumb|Creates whats below]]&lt;br /&gt;
 | createdwith = [[Electronics Printer]]&lt;br /&gt;
 | cost        = 5 [[Gold]], 7 [[Copper]], 3 [[Steel]]&lt;br /&gt;
 | stacks      = 10&lt;br /&gt;
}}&lt;br /&gt;
{{Structurebox&lt;br /&gt;
 | name             = Power Transmitter [[File:Microwave Power Transmitter.jpg|thumb|]]&lt;br /&gt;
 | power_usage      = 10W&lt;br /&gt;
 | placed_with_item = [[Kit (PowerTransmitter)]]&lt;br /&gt;
 | placed_on_grid   = Large Grid&lt;br /&gt;
 | build states     = Three&lt;br /&gt;
 | decon_with_tool1 = [[Hand Drill]]&lt;br /&gt;
 | item_rec1        = 3x [[Electronic Parts]]&lt;br /&gt;
 | decon_with_tool2 = [[Hand Drill]]&lt;br /&gt;
 | item_rec2        = 2x [[Iron Sheets]]&lt;br /&gt;
 | decon_with_tool3 = [[Hand Drill]]&lt;br /&gt;
 | item_rec3        = [[Kit (PowerTransmitter)]]&lt;br /&gt;
}}&lt;br /&gt;
{{Structurebox&lt;br /&gt;
 | name             = Power Receiver [[File:Microwave Power Receiver.jpg|thumb|]]&lt;br /&gt;
 | power_usage      = 10W&lt;br /&gt;
 | placed_with_item = [[Kit (PowerTransmitter)]]&lt;br /&gt;
 | placed_on_grid   = Large Grid&lt;br /&gt;
 | build states     = Three&lt;br /&gt;
 | decon_with_tool1 = [[Hand Drill]]&lt;br /&gt;
 | item_rec1        = 1x [[Electronic Parts]]&lt;br /&gt;
 | decon_with_tool2 = [[Hand Drill]]&lt;br /&gt;
 | item_rec2        = 2x [[Iron Sheets]]&lt;br /&gt;
 | decon_with_tool3 = [[Hand Drill]]&lt;br /&gt;
 | item_rec3        = [[Kit (PowerTransmitter)]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Description == &amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
The Norsec Wireless Power Transmitter is an uni-directional, A-to B, far field microwave electical transmission system. The rotatable base transmitter delivers a narrow, non-lethal Microwave beam to a dedicated base receiver.&lt;br /&gt;
&lt;br /&gt;
The transmitter must be aligned to the base station in order to transmit any power. The brightness of the transmitter&#039;s collimator arc provides an indication of transmission intensity. Note that there is an attrition over longer ranges, so the unit requrires more power over greater distances to deliver the same output.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==General behaviour==&lt;br /&gt;
*5kW is the maximum PowerPotential that can be transmitted, this amount is reduced by distance.&lt;br /&gt;
*Unaffected by storms.&lt;br /&gt;
*Using two emitters on the same reciever doesn&#039;t appear to work&lt;br /&gt;
*A Logic Transmitter can mirror recievers, but not emitters.&lt;br /&gt;
*The coordinates of these devices will change slightly when the head moves.&lt;br /&gt;
*Both structures and terrain will block the beam. Once a beam is formed it will no longer be blocked by building things between them.&lt;br /&gt;
*When these devices are built their placement rotation is important. Always point the data-ports facing in the same direction (for example north, 0° on the space suit compass) to avoid problems with the alignment formulas.&lt;br /&gt;
*When the head rotates horizontally in what is usually considered the positive direction, these devices rotate in the negative direction instead, this flipped behaviour is accounted for in the math formulas below.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Range==&lt;br /&gt;
===Power transfer with 4000 W PowerPotential===&lt;br /&gt;
98m = 3630 W (-0.37kW)&lt;br /&gt;
&amp;lt;br&amp;gt;198m = 2863 W (-1.14kW)&lt;br /&gt;
&amp;lt;br&amp;gt;300m = 1409 W (-2.59kW)&lt;br /&gt;
&amp;lt;br&amp;gt;400m = 0 W&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Power transfer with 5000 W PowerPotential===&lt;br /&gt;
98m = 4630 W (-0.37kW)&lt;br /&gt;
&amp;lt;br&amp;gt;198m = 3863 W (-1.14kW)&lt;br /&gt;
&amp;lt;br&amp;gt;300m = 2409 W (-2.59kW)&lt;br /&gt;
&amp;lt;br&amp;gt;400m = 651 W (-4.35kW)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Alignment formulas==&lt;br /&gt;
All dataports points north, the delta values are calculated from: &amp;quot;reciever coordinate&amp;quot; - &amp;quot;emitter coordinate&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Horizontal for &amp;quot;emitter&amp;quot; = atan2( delta-x / delta-z ) * 180 / pi&lt;br /&gt;
&amp;lt;br&amp;gt;Vertical for &amp;quot;emitter&amp;quot; = 90 + atan( delta-y / sqrt( (delta-z)^2 + (delta-x)^2 ) ) * 180 / pi&lt;br /&gt;
&lt;br /&gt;
Horizontal for &amp;quot;reciever&amp;quot; = 180 + Horizontal for &amp;quot;emitter&amp;quot;&lt;br /&gt;
&amp;lt;br&amp;gt;Vertical for &amp;quot;reciever&amp;quot; = 180 - Vertical for &amp;quot;emitter&amp;quot; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==IC script==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
##POWER TRANSMITTER ALIGNMENT##&lt;br /&gt;
#When the alignment is complete, this IC housing..&lt;br /&gt;
#..and the Logic Transmitter can be unpowered&lt;br /&gt;
&lt;br /&gt;
#Transmitter/Reciever data-ports must point NORTH&lt;br /&gt;
&lt;br /&gt;
#transmitter = Microwave Power Transmitter&lt;br /&gt;
alias transmitter d0&lt;br /&gt;
#reciever = Logic Transmitter linked to the..&lt;br /&gt;
#..Microwave Power Reciever&lt;br /&gt;
alias reciever d1&lt;br /&gt;
&lt;br /&gt;
alias deltaX r13&lt;br /&gt;
alias deltaZ r14&lt;br /&gt;
alias deltaY r15&lt;br /&gt;
define pi 3.1415&lt;br /&gt;
&lt;br /&gt;
main:&lt;br /&gt;
yield&lt;br /&gt;
#calculate delta values&lt;br /&gt;
l r0 reciever PositionX&lt;br /&gt;
l r1 transmitter PositionX&lt;br /&gt;
sub deltaX r0 r1&lt;br /&gt;
l r0 reciever PositionZ&lt;br /&gt;
l r1 transmitter PositionZ&lt;br /&gt;
sub deltaZ r0 r1&lt;br /&gt;
l r0 reciever PositionY&lt;br /&gt;
l r1 transmitter PositionY&lt;br /&gt;
sub deltaY r0 r1&lt;br /&gt;
&lt;br /&gt;
#Horizontal for &amp;quot;transmitter&amp;quot;&lt;br /&gt;
#atan2(deltaX/deltaZ)*180/pi&lt;br /&gt;
atan2 r0 deltaX deltaZ&lt;br /&gt;
mul r0 r0 180&lt;br /&gt;
div r0 r0 pi&lt;br /&gt;
s transmitter Horizontal r0&lt;br /&gt;
&lt;br /&gt;
#Horizontal for &amp;quot;reciever&amp;quot;&lt;br /&gt;
#180 + Horizontal for &amp;quot;emitter&amp;quot;&lt;br /&gt;
add r0 180 r0&lt;br /&gt;
s reciever Horizontal r0&lt;br /&gt;
&lt;br /&gt;
#Vertical for &amp;quot;transmitter&amp;quot;&lt;br /&gt;
#atan(deltaY/sqrt(deltaX^2+deltaZ^2))*180/pi+90&lt;br /&gt;
mul r0 deltaX deltaX&lt;br /&gt;
mul r1 deltaZ deltaZ&lt;br /&gt;
add r0 r0 r1&lt;br /&gt;
sqrt r0 r0&lt;br /&gt;
div r0 deltaY r0&lt;br /&gt;
atan r0 r0&lt;br /&gt;
mul r0 r0 180&lt;br /&gt;
div r0 r0 pi&lt;br /&gt;
add r0 r0 90&lt;br /&gt;
s transmitter Vertical r0&lt;br /&gt;
&lt;br /&gt;
#Vertical for &amp;quot;reciever&amp;quot;&lt;br /&gt;
#180 - Vertical for &amp;quot;transmitter&amp;quot;&lt;br /&gt;
sub r0 180 r0&lt;br /&gt;
s reciever Vertical r0&lt;br /&gt;
j main&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Guide_(Farming)&amp;diff=12625</id>
		<title>Guide (Farming)</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Guide_(Farming)&amp;diff=12625"/>
		<updated>2022-07-21T14:30:22Z</updated>

		<summary type="html">&lt;p&gt;Wark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Food]]&lt;br /&gt;
== Info ==&lt;br /&gt;
=== Choose Farming Plot ===&lt;br /&gt;
As of version 0.2.2865.14293 (The Food For Thought Update), 4 farming plot items are available in normal gameplay, [[Portable Hydroponics]], [[Planter]], [[Hydroponic Tray]] and [[Hydroponic Station]]. [[Automated Hydroponics]] is labeled obsolete thus only accessible via creative mode.&lt;br /&gt;
* [[Portable Hydroponics]], early game item&lt;br /&gt;
**pros&lt;br /&gt;
***Early game item, normally provided in starter crate. &lt;br /&gt;
***No piping needed. Insert starter water canister can last a long time.&lt;br /&gt;
**cons&lt;br /&gt;
***Can not be automated.&lt;br /&gt;
***Portable item, clutters base floor.&lt;br /&gt;
***Requires external lighting (sun/ [[Grow Light]])&lt;br /&gt;
* [[Planter]], early game item&lt;br /&gt;
**pros&lt;br /&gt;
***Early game item, do not need alloy to build.&lt;br /&gt;
***No piping needed. Accepts water canister, water bottle, or dedicated water pipe.&lt;br /&gt;
***Can be automated.&lt;br /&gt;
**cons&lt;br /&gt;
***When not using liquid pipe, watering the plant can be labor-intensive. &lt;br /&gt;
***Has only one water port so it can not be chained, making the green house layout less compact.&lt;br /&gt;
***Requires external lighting (sun/ [[Grow Light]])&lt;br /&gt;
* [[Hydroponic Tray]], mid/end game item&lt;br /&gt;
**pros&lt;br /&gt;
***Do not need alloy to build.&lt;br /&gt;
***Can be automated.&lt;br /&gt;
***Extremely space-efficient, one plot per small grid.&lt;br /&gt;
**cons&lt;br /&gt;
***Requires piping network to feed water.&lt;br /&gt;
***Requires external lighting (sun/ [[Grow Light]])&lt;br /&gt;
*[[Hydroponic Station]], mid/end game item&lt;br /&gt;
**pros&lt;br /&gt;
***Built-in light source.&lt;br /&gt;
**cons&lt;br /&gt;
***Requires steel to build.&lt;br /&gt;
***Can not be automated.&lt;br /&gt;
***bulky, 4 plot for 3x4 small grid, not space-efficient.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Setup === &lt;br /&gt;
Farming plants can be done with [[Portable Hydroponics]], [[Planter]], [[Hydroponic Tray]] or [[Hydroponic Station]]. All of them use an open-top design so a controlled atmosphere (greenhouse) is required to operate this equipment.&lt;br /&gt;
* &#039;&#039;&#039;Using [[Portable Hydroponics]], [[Planter]], [[Hydroponic Tray]] or [[Hydroponic Station]]&#039;&#039;&#039;&lt;br /&gt;
# Build an airtight room with an airlock. Use [[Circuitboard_(Airlock)|simple airlock]] if the environment outside is a vacuum, or [[Circuitboard_(Advanced_Airlock)|advanced airlock]] if the outside world has pressure.&lt;br /&gt;
#* If you plan to rely on [[Grow Light]] or [[Hydroponic Station]], direct sunlight is not required so you can build the greenhouse anywhere using any material.&lt;br /&gt;
#* If you want to use sunlight as well, the greenhouse should be planned with maximum sun exposure in mind, and all walls/ceilings facing the sun trajectory are made of glass. &lt;br /&gt;
# Build an entire set of pressure/temperature/gasMixture control for the greenhouse, either manual system or automated (via [[Kit_(Logic_I/O)|logic chips]] or [[Integrated_Circuit_(IC10)|programable IC chip]]). Make sure the following conditions are met, or the plant will wither through a declining health bar:&lt;br /&gt;
#* 7.7KPa &amp;lt; Pressure &amp;lt; 190KPa. Glass panel collapses near 200KPa pressure difference.&lt;br /&gt;
#* 15&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt;C &amp;lt; Air Temperature &amp;lt; 50&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt;C.&lt;br /&gt;
#* Atmosphere and pipes being mostly free of [[pollutant]]s and [[volatiles]], maximum of 3mols for volatiles.&lt;br /&gt;
#* 40 kPa atmosphere of minimum 1% [[Carbon_Dioxide|carbon dioxide]]. &lt;br /&gt;
#* 5&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt;C &amp;lt; Water Temperature &amp;lt; 60&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt;C.&lt;br /&gt;
# Provide grow beds with water, or the plant will wither through a declining health bar. Insert a canister of water into the slot of [[Portable Hydroponics]]. Apply water bottle or water canister directly on [[Planter]]. Connect [[Hydroponic Tray]], [[Planter]] or [[Hydroponic Station]] to a liquid pipe network containing water.&lt;br /&gt;
# Seed the farming plot. Can be done with either seeds or raw fruits.&lt;br /&gt;
# Provide illumination to the plants. Activate the UV light on [[Hydroponic Station]], turn on your dedicated [[Grow Light]], or wait till the sun comes up. The plant won&#039;t die for lack of light exposure, merely stops growing. Low sunlight strength on Europa will produce a misleading warning saying &#039;no sunlight&#039;, but really it is just growing at a reduced rate.&lt;br /&gt;
# [[Fertilizer]] (obtained through [[Portable Composter]] or [[Advanced Composter]]) can be used to speed up growth or boost yield depending on how it is made. More detail to be added. &lt;br /&gt;
# There is a seed mature stage right before the fruit mature stage, so seed harvesting is time-sensitive. Point cursor at the plant at the right growth stage there will be a hint saying how many seeds are available for harvesting. If one waited too long there won&#039;t be any seed left, only fruits. You can however replant fruit as if it&#039;s a seed. Harvesting seeds does not affect fruit yield. &lt;br /&gt;
# Wait till the fruit matures(cursor hints current yield), and harvest. The current patch note says the decay timer begins when the fruit matures, even when it is still left on the tree. &lt;br /&gt;
# A healthy plant consumes water and [[Carbon_Dioxide|carbon dioxide]], then produces oxygen and radiates heat into the surrounding atmosphere. Constant manual intervention or another feedback loop into the environment control will be necessary to keep the greenhouse running in the long term.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Using [[Automated Hydroponics]]&#039;&#039;&#039;&lt;br /&gt;
# This item is obsolete. It&#039;s only accessible in creative mode. Check [[Automated Hydroponics|its own article]] for detail.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Fertilizer ===&lt;br /&gt;
The following data was collected on tomatoes in version 0.2.3456&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Fertilizer !! Number of uses !! Tomato growth speed, planting to mature !! Tomato yield (seeds and produce)&lt;br /&gt;
|-&lt;br /&gt;
| none || n/a || 616 seconds&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || 2&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 3 biomass || 7 || 416 seconds&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || 4&lt;br /&gt;
|-&lt;br /&gt;
| 3 food || 3 || 314 seconds&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || 5&lt;br /&gt;
|-&lt;br /&gt;
| 3 decayed food || 3 || 279 seconds&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || 4&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 1 biomass + 1 food + 1 decayed || 3 || 314 seconds&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || 4&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 2 biomass + 1 food || 4 || 349 seconds&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || 4&lt;br /&gt;
|-&lt;br /&gt;
| 2 biomass + 1 decayed || 4 || 336 seconds&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || 4&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 2 decayed + 1 biomass || 3 || 311 seconds&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || 4&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 2 food + 1 biomass || 3 || 327 seconds&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || 5&lt;br /&gt;
|-&lt;br /&gt;
| 3 food + 3 biomass || 4 || 330 seconds&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || 5&lt;br /&gt;
|}&lt;br /&gt;
*1: The grow times were recorded in the shade using grow lights on Mars, where plants will grow faster if they recieve sunlight. The times comes from a Stop Watch (Kit(Music)) and an IC, starting from Hydroponic Device Slot 0 &amp;quot;Occupied&amp;quot; = 1 and stopping at Hydroponic Device Slot 0 &amp;quot;Mature&amp;quot; = 1.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Fastest way to create decayed food:&#039;&#039;&#039;&lt;br /&gt;
* Gas: X&lt;br /&gt;
* Pressure: &amp;lt;0.2 kPa&lt;br /&gt;
* Temperature: &amp;gt;200°C&lt;br /&gt;
* A [[Fridge (small)]] is perfect for this&lt;br /&gt;
* Cooked food decays faster than raw&lt;br /&gt;
* Gas at very low pressures can&#039;t be heated by a [[Pipe Heater]], heat the gas before reducing the pressure.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Plant consumption and production of gases and water===&lt;br /&gt;
version 0.2.3456&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Plant !! Temperature (air) !! H2O (mol/tick)!! CarbonDioxide (mol/tick)!! Oxygen (mol/tick)!! Volatiles (mol/tick)!! Nitrogen (mol/tick)!! NitrousOxide (mol/tick)!! Pollutant (mol/tick)&lt;br /&gt;
|-&lt;br /&gt;
| Food crops + fern + flowers || 15-52°C || -0.00000596 || -0.00240 || +0.00120 || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Tropical Lily || 17-56°C || -0.00000596 || -0.00400 || +0.00200 || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Peace Lily || 13-52°C || -0.00000596 || -0.00400 || +0.00200 || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Darga fern || 15-52°C || -0.00000596 || -0.01700 || +0.00850 || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Mushroom&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || 15-52°C || -0.00000596 || +0.00120 || -0.00240 || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Winterspawn, alpha || best at ~18°C || -0.00020000 || || +0.000181&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; || +0.000362&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; || -0.0060 || ||&lt;br /&gt;
|-&lt;br /&gt;
| Winterspawn, beta || best at ~20°C || -0.00040000 || || +0.000281&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; || +0.000562&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; || -0.0100 || ||&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Hades, alpha || ? || -0.00000596 || || -?&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; || -?&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; || || || +0.0040&lt;br /&gt;
|-&lt;br /&gt;
| Hades, beta || ? || -0.00000596 || || -?&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; || -?&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; || || || +0.0025&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Alien mushroom || ? || -0.00000600 || || +0.00080 || || +0.00120 || -0.00480 ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* 1: Mushrooms only grows in darkness&lt;br /&gt;
* 2: Depends on temperature, alpha is max at ~18°C and beta at 20°C, the plant must be mature&lt;br /&gt;
* 3: Depends on the O2 and H2 concentration&lt;br /&gt;
* Comment: Plants have been observed to consume much less CO2 when the air has a low concentration of it, with O2 still being produced at full capacity. The reverse is also true for mushrooms. Water doesn&#039;t behave like this, below a certain amount a tray will no longer count as hydrated and the plant will start dying.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Efficiency of raw food and meals === &amp;lt;!--T:3--&amp;gt;&lt;br /&gt;
The following table compares the sustainability of everything eatable in &#039;&#039;meals&#039;&#039;:&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;(&#039;&#039;&#039;1 meal&#039;&#039;&#039; satisfies &#039;&#039;&#039;100% of hunger&#039;&#039;&#039;. In this way, &#039;&#039;&#039;1 [[muffin]]&#039;&#039;&#039; for example satisfies &#039;&#039;&#039;200% of hunger&#039;&#039;&#039;, which sufficient for &#039;&#039;&#039;2 full meals&#039;&#039;&#039;.)&amp;lt;/small&amp;gt;&lt;br /&gt;
* per &#039;&#039;&#039;unit&#039;&#039;&#039; &amp;lt;small&amp;gt;(e.g. 1 [[Cereal Bar|cereal bar]], 1 [[tomato]] or 1ml of [[milk]].)&amp;lt;/small&amp;gt;&lt;br /&gt;
* per &#039;&#039;&#039;stack&#039;&#039;&#039; &amp;lt;small&amp;gt;(e.g. 20 [[mushroom|mushrooms]] or 5 raw [[corn]] grains.)&amp;lt;/small&amp;gt;&lt;br /&gt;
* per &#039;&#039;&#039;plant&#039;&#039;&#039; / &#039;&#039;&#039;grow cycle&#039;&#039;&#039; &amp;lt;small&amp;gt;(e.g. some [[soybean|soybeans]] or [[pumpkin|pumpkins]], which grow to &#039;&#039;several&#039;&#039; &amp;lt;small&amp;gt;(more than 1)&amp;lt;/small&amp;gt; on their plants.)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Ordered List of plantables and cookables == &amp;lt;!--T:6--&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;ritz grid-container&amp;quot; dir=&amp;quot;ltr&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;table class=&amp;quot;waffle&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s0&amp;quot; dir=&amp;quot;ltr&amp;quot; rowspan=&amp;quot;3&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Name&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s0&amp;quot; dir=&amp;quot;ltr&amp;quot; colspan=&amp;quot;15&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Efficiency&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s0&amp;quot; dir=&amp;quot;ltr&amp;quot; rowspan=&amp;quot;3&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Ingredients&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s0&amp;quot; dir=&amp;quot;ltr&amp;quot; rowspan=&amp;quot;3&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;grows / prepare in&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s1&amp;quot; dir=&amp;quot;ltr&amp;quot; colspan=&amp;quot;7&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #efefef;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;(short range)&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s2&amp;quot; dir=&amp;quot;ltr&amp;quot; colspan=&amp;quot;4&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #cccccc;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;(medium range)&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s3&amp;quot; dir=&amp;quot;ltr&amp;quot; colspan=&amp;quot;4&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #999999;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;(long range)&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s4&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Portion&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s5&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;font-style: italic;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;of&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s4&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Unit&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s6&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: none;background-color: #efefef;text-align: center;font-style: italic;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;do&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s7 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-left: none;background-color: #efefef;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 52px; left: -3px;&amp;quot;&amp;gt;Hunger&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s8&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;⇒&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s9&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Meals&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s10&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;font-style: italic;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;by&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s11&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Stacks&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s12&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;⇒&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s13&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Meals&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s14&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;font-style: italic;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;by&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s15&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Yield&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s16&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;⇒&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s15&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Meals&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Fern]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Flower]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Milk]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1ml&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 237px; left: -1px;&amp;quot;&amp;gt;100ml [[Soy Oil]], 50g [[Fenoxitone Powder]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Chemistry Station]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Soy Oil]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1ml&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1 [[Soybean]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s26 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: none;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 123px; left: -1px;&amp;quot;&amp;gt;[[Reagent Processor]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Soybean]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;10%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;10,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Wheat]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;10%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;10,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Tomato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;30%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,3&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;6,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;3&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;18,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Pumpkin Pie]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;17%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;5,9&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;5,9&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;5,9&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 237px; left: -1px;&amp;quot;&amp;gt;100g [[Flour]], 1 [[Egg]], 10ml [[Milk]], 1 [[Pumpkin]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Mushroom]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;4,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;8,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Potato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;4,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;3&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;12,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Muffin]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;50%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;50g [[Flour]], 1 [[Egg]], 10ml [[Milk]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Fries]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;63%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0.5ml [[Soy Oil]], 1 [[Potato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Pumpkin]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Rice]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;50&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 81px; left: -1px;&amp;quot;&amp;gt;[[Baked potato]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;80%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,8&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,8&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,8&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1 [[Potato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 81px; left: -1px;&amp;quot;&amp;gt;[[Tomato Soup]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;70%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,7&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,7&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,7&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1 [[Tomato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Cereal Bar]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;60%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;50g [[Flour]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s27&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Corn]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s28&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s8&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s28&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s8&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s28&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s8&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s29&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s12&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s30&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;5&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s12&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s31&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s16&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s32&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s16&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s32&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s27&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s27&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Food storage ==&lt;br /&gt;
Food decays at a rate determined by the environment it is stored in. The main factors are gas composition of surrounding atmosphere, temperature of the surrounding atmosphere, pressure of the atmosphere, and whether or not the item is in a fridge. Decay rate multipliers for a given gas are listed below:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Gas !! Decay Rate Multiplier&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Nitrogen|Nitrogen (N&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]] || 0.6&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Carbon Dioxide|Carbon Dioxide (CO&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]] || 0.8&lt;br /&gt;
|-&lt;br /&gt;
| Vacuum || 1&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Volatiles|Volatiles (H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]] || 1&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Oxygen|Oxygen (O&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]] || 1.5&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Nitrous Oxide|Nitrous Oxide (N&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;O)]] || 1.5&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Water|Water (H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;O)]] || 2&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Pollutant|Pollutants (X)]] || 3&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Also not all foods decay here is the list of foods unaffected by decay.&lt;br /&gt;
*[[Cereal Bar|Cereal Bars]]&lt;br /&gt;
*[[Corn Soup]]&lt;br /&gt;
*[[Pumpkin Soup]]&lt;br /&gt;
*[[Tomato Soup]]&lt;br /&gt;
The Soups being canned goods, and the cereal bar being a processed food hence why they do not decay.&lt;br /&gt;
&lt;br /&gt;
The decay rate also contains a factor determined by temperature, the pressure of the environment, as the food that needs to be preserved now has to be above 101 Kpa as preservation gets debuffed if its below 1 earth atmosphere. And the temperature decay factor is a complicated calculation summarized in the graph below ([https://www.reddit.com/r/Stationeers/comments/mrxwhp/decaying_food_gastemperature_data_math/guth0bt/ /u/LordRavenX, 04/2021]):&lt;br /&gt;
&lt;br /&gt;
[[File:FoodDecayFactorVsTempK.png|800px|Decay factor vs. temp Kelvin by [https://www.reddit.com/r/Stationeers/comments/mrxwhp/decaying_food_gastemperature_data_math/guth0bt/ /u/LordRavenX, 04/2021]]]&lt;br /&gt;
&lt;br /&gt;
Storage of food within a powered fridge also multiplies by a factor of 0.3, reducing decay by 70%.&lt;br /&gt;
&lt;br /&gt;
To minimize decay, food should be kept in a powered fridge in a nitrogen atmosphere of over 101kpa at a temperature of at least 110K (-163°C) as the calculation has been tweaked to not penalize preservation for being to cold.&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Guide_(Farming)&amp;diff=12578</id>
		<title>Guide (Farming)</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Guide_(Farming)&amp;diff=12578"/>
		<updated>2022-07-20T13:54:41Z</updated>

		<summary type="html">&lt;p&gt;Wark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Food]]&lt;br /&gt;
== Info ==&lt;br /&gt;
=== Choose Farming Plot ===&lt;br /&gt;
As of version 0.2.2865.14293 (The Food For Thought Update), 4 farming plot items are available in normal gameplay, [[Portable Hydroponics]], [[Planter]], [[Hydroponic Tray]] and [[Hydroponic Station]]. [[Automated Hydroponics]] is labeled obsolete thus only accessible via creative mode.&lt;br /&gt;
* [[Portable Hydroponics]], early game item&lt;br /&gt;
**pros&lt;br /&gt;
***Early game item, normally provided in starter crate. &lt;br /&gt;
***No piping needed. Insert starter water canister can last a long time.&lt;br /&gt;
**cons&lt;br /&gt;
***Can not be automated.&lt;br /&gt;
***Portable item, clutters base floor.&lt;br /&gt;
***Requires external lighting (sun/ [[Grow Light]])&lt;br /&gt;
* [[Planter]], early game item&lt;br /&gt;
**pros&lt;br /&gt;
***Early game item, do not need alloy to build.&lt;br /&gt;
***No piping needed. Accepts water canister, water bottle, or dedicated water pipe.&lt;br /&gt;
***Can be automated.&lt;br /&gt;
**cons&lt;br /&gt;
***When not using liquid pipe, watering the plant can be labor-intensive. &lt;br /&gt;
***Has only one water port so it can not be chained, making the green house layout less compact.&lt;br /&gt;
***Requires external lighting (sun/ [[Grow Light]])&lt;br /&gt;
* [[Hydroponic Tray]], mid/end game item&lt;br /&gt;
**pros&lt;br /&gt;
***Do not need alloy to build.&lt;br /&gt;
***Can be automated.&lt;br /&gt;
***Extremely space-efficient, one plot per small grid.&lt;br /&gt;
**cons&lt;br /&gt;
***Requires piping network to feed water.&lt;br /&gt;
***Requires external lighting (sun/ [[Grow Light]])&lt;br /&gt;
*[[Hydroponic Station]], mid/end game item&lt;br /&gt;
**pros&lt;br /&gt;
***Built-in light source.&lt;br /&gt;
**cons&lt;br /&gt;
***Requires steel to build.&lt;br /&gt;
***Can not be automated.&lt;br /&gt;
***bulky, 4 plot for 3x4 small grid, not space-efficient.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Setup === &lt;br /&gt;
Farming plants can be done with [[Portable Hydroponics]], [[Planter]], [[Hydroponic Tray]] or [[Hydroponic Station]]. All of them use an open-top design so a controlled atmosphere (greenhouse) is required to operate this equipment.&lt;br /&gt;
* &#039;&#039;&#039;Using [[Portable Hydroponics]], [[Planter]], [[Hydroponic Tray]] or [[Hydroponic Station]]&#039;&#039;&#039;&lt;br /&gt;
# Build an airtight room with an airlock. Use [[Circuitboard_(Airlock)|simple airlock]] if the environment outside is a vacuum, or [[Circuitboard_(Advanced_Airlock)|advanced airlock]] if the outside world has pressure.&lt;br /&gt;
#* If you plan to rely on [[Grow Light]] or [[Hydroponic Station]], direct sunlight is not required so you can build the greenhouse anywhere using any material.&lt;br /&gt;
#* If you want to use sunlight as well, the greenhouse should be planned with maximum sun exposure in mind, and all walls/ceilings facing the sun trajectory are made of glass. &lt;br /&gt;
# Build an entire set of pressure/temperature/gasMixture control for the greenhouse, either manual system or automated (via [[Kit_(Logic_I/O)|logic chips]] or [[Integrated_Circuit_(IC10)|programable IC chip]]). Make sure the following conditions are met, or the plant will wither through a declining health bar:&lt;br /&gt;
#* 7.7KPa &amp;lt; Pressure &amp;lt; 190KPa. Glass panel collapses near 200KPa pressure difference.&lt;br /&gt;
#* 15&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt;C &amp;lt; Air Temperature &amp;lt; 50&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt;C.&lt;br /&gt;
#* Atmosphere and pipes being mostly free of [[pollutant]]s and [[volatiles]], maximum of 3mols for volatiles.&lt;br /&gt;
#* 40 kPa atmosphere of minimum 1% [[Carbon_Dioxide|carbon dioxide]]. &lt;br /&gt;
#* 5&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt;C &amp;lt; Water Temperature &amp;lt; 60&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt;C.&lt;br /&gt;
# Provide grow beds with water, or the plant will wither through a declining health bar. Insert a canister of water into the slot of [[Portable Hydroponics]]. Apply water bottle or water canister directly on [[Planter]]. Connect [[Hydroponic Tray]], [[Planter]] or [[Hydroponic Station]] to a liquid pipe network containing water.&lt;br /&gt;
# Seed the farming plot. Can be done with either seeds or raw fruits.&lt;br /&gt;
# Provide illumination to the plants. Activate the UV light on [[Hydroponic Station]], turn on your dedicated [[Grow Light]], or wait till the sun comes up. The plant won&#039;t die for lack of light exposure, merely stops growing. Low sunlight strength on Europa will produce a misleading warning saying &#039;no sunlight&#039;, but really it is just growing at a reduced rate.&lt;br /&gt;
# [[Fertilizer]] (obtained through [[Portable Composter]] or [[Advanced Composter]]) can be used to speed up growth or boost yield depending on how it is made. More detail to be added. &lt;br /&gt;
# There is a seed mature stage right before the fruit mature stage, so seed harvesting is time-sensitive. Point cursor at the plant at the right growth stage there will be a hint saying how many seeds are available for harvesting. If one waited too long there won&#039;t be any seed left, only fruits. You can however replant fruit as if it&#039;s a seed. Harvesting seeds does not affect fruit yield. &lt;br /&gt;
# Wait till the fruit matures(cursor hints current yield), and harvest. The current patch note says the decay timer begins when the fruit matures, even when it is still left on the tree. &lt;br /&gt;
# A healthy plant consumes water and [[Carbon_Dioxide|carbon dioxide]], then produces oxygen and radiates heat into the surrounding atmosphere. Constant manual intervention or another feedback loop into the environment control will be necessary to keep the greenhouse running in the long term.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Using [[Automated Hydroponics]]&#039;&#039;&#039;&lt;br /&gt;
# This item is obsolete. It&#039;s only accessible in creative mode. Check [[Automated Hydroponics|its own article]] for detail.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Fertilizer ===&lt;br /&gt;
The following data was collected on tomatoes in version 0.2.3456&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Fertilizer !! Number of uses !! Tomato growth speed, planting to mature !! Tomato yield (seeds and produce)&lt;br /&gt;
|-&lt;br /&gt;
| none || n/a || 582 seconds&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || 2&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 3 biomass || 7 || 395 seconds&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || 4&lt;br /&gt;
|-&lt;br /&gt;
| 3 food || 3 || 300 seconds&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || 5&lt;br /&gt;
|-&lt;br /&gt;
| 3 decayed food || 3 || 268 seconds&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || 4&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 1 biomass + 1 food + 1 decayed || 3 || 300 seconds&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || 4&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 2 biomass + 1 food || 4 || 350 seconds&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || 4&lt;br /&gt;
|-&lt;br /&gt;
| 2 biomass + 1 decayed || 4 || 335 seconds&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || 4&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 2 food + 1 biomass || 3 || 340 seconds&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || 5&lt;br /&gt;
|-&lt;br /&gt;
| 2 decayed + 1 biomass || 3 || 314 seconds&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || 4&lt;br /&gt;
|-&lt;br /&gt;
| 3 food + 3 biomass || 4 || 333 seconds&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || 5&lt;br /&gt;
|}&lt;br /&gt;
*1: Repeated experiments shows that the grow time is variable. It&#039;s possible that access to sunlight is behind this, and that grow lights are less efficient than sunlight.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Fastest way to create decayed food:&#039;&#039;&#039;&lt;br /&gt;
* Gas: X&lt;br /&gt;
* Pressure: &amp;lt;0.2 kPa&lt;br /&gt;
* Temperature: &amp;gt;200°C&lt;br /&gt;
* A [[Fridge (small)]] is perfect for this&lt;br /&gt;
* Cooked food decays faster than raw&lt;br /&gt;
* Gas at very low pressures can&#039;t be heated by a [[Pipe Heater]], heat the gas before reducing the pressure.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Plant consumption and production of gases and water===&lt;br /&gt;
version 0.2.3456&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Plant !! Temperature (air) !! H2O (mol/tick)!! CarbonDioxide (mol/tick)!! Oxygen (mol/tick)!! Volatiles (mol/tick)!! Nitrogen (mol/tick)!! NitrousOxide (mol/tick)!! Pollutant (mol/tick)&lt;br /&gt;
|-&lt;br /&gt;
| Food crops + fern + flowers || 15-52°C || -0.00000596 || -0.00240 || +0.00120 || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Tropical Lily || 17-56°C || -0.00000596 || -0.00400 || +0.00200 || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Peace Lily || 13-52°C || -0.00000596 || -0.00400 || +0.00200 || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Darga fern || 15-52°C || -0.00000596 || -0.01700 || +0.00850 || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Mushrooms&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || 15-52°C || -0.00000596 || +0.00120 || -0.00240 || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Winterspawn, alpha || best at ~18°C || -0.00020000 || || +0.000181&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; || +0.000362&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; || -0.0060 || ||&lt;br /&gt;
|-&lt;br /&gt;
| Winterspawn, beta || best at ~20°C || -0.00040000 || || +0.000281&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; || +0.000562&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; || -0.0100 || ||&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Hades, alpha || ? || -0.00000596 || || -?&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; || -?&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; || || || +0.0040&lt;br /&gt;
|-&lt;br /&gt;
| Hades, beta || ? || -0.00000596 || || -?&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; || -?&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; || || || +0.0025&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Alien mushroom || ? || -0.00000600 || || +0.00080 || || +0.00120 || -0.00480 ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* 1: only grows in darkness&lt;br /&gt;
* 2: depends on temperature, alpha is max at ~18°C and beta at 20°C, the plant must be mature&lt;br /&gt;
* 3: depends on the O2 and H2 concentration&lt;br /&gt;
* Comment: Plants have been observed to consume much less CO2 when the air has a low concentration of it, with O2 still being produced at full capacity. The reverse is also true for mushrooms. Water doesn&#039;t behave like this, below a certain amount a tray will no longer count as hydrated and the plant will start dying.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Efficiency of raw food and meals === &amp;lt;!--T:3--&amp;gt;&lt;br /&gt;
The following table compares the sustainability of everything eatable in &#039;&#039;meals&#039;&#039;:&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;(&#039;&#039;&#039;1 meal&#039;&#039;&#039; satisfies &#039;&#039;&#039;100% of hunger&#039;&#039;&#039;. In this way, &#039;&#039;&#039;1 [[muffin]]&#039;&#039;&#039; for example satisfies &#039;&#039;&#039;200% of hunger&#039;&#039;&#039;, which sufficient for &#039;&#039;&#039;2 full meals&#039;&#039;&#039;.)&amp;lt;/small&amp;gt;&lt;br /&gt;
* per &#039;&#039;&#039;unit&#039;&#039;&#039; &amp;lt;small&amp;gt;(e.g. 1 [[Cereal Bar|cereal bar]], 1 [[tomato]] or 1ml of [[milk]].)&amp;lt;/small&amp;gt;&lt;br /&gt;
* per &#039;&#039;&#039;stack&#039;&#039;&#039; &amp;lt;small&amp;gt;(e.g. 20 [[mushroom|mushrooms]] or 5 raw [[corn]] grains.)&amp;lt;/small&amp;gt;&lt;br /&gt;
* per &#039;&#039;&#039;plant&#039;&#039;&#039; / &#039;&#039;&#039;grow cycle&#039;&#039;&#039; &amp;lt;small&amp;gt;(e.g. some [[soybean|soybeans]] or [[pumpkin|pumpkins]], which grow to &#039;&#039;several&#039;&#039; &amp;lt;small&amp;gt;(more than 1)&amp;lt;/small&amp;gt; on their plants.)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Ordered List of plantables and cookables == &amp;lt;!--T:6--&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;ritz grid-container&amp;quot; dir=&amp;quot;ltr&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;table class=&amp;quot;waffle&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s0&amp;quot; dir=&amp;quot;ltr&amp;quot; rowspan=&amp;quot;3&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Name&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s0&amp;quot; dir=&amp;quot;ltr&amp;quot; colspan=&amp;quot;15&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Efficiency&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s0&amp;quot; dir=&amp;quot;ltr&amp;quot; rowspan=&amp;quot;3&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Ingredients&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s0&amp;quot; dir=&amp;quot;ltr&amp;quot; rowspan=&amp;quot;3&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;grows / prepare in&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s1&amp;quot; dir=&amp;quot;ltr&amp;quot; colspan=&amp;quot;7&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #efefef;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;(short range)&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s2&amp;quot; dir=&amp;quot;ltr&amp;quot; colspan=&amp;quot;4&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #cccccc;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;(medium range)&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s3&amp;quot; dir=&amp;quot;ltr&amp;quot; colspan=&amp;quot;4&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #999999;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;(long range)&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s4&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Portion&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s5&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;font-style: italic;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;of&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s4&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Unit&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s6&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: none;background-color: #efefef;text-align: center;font-style: italic;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;do&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s7 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-left: none;background-color: #efefef;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 52px; left: -3px;&amp;quot;&amp;gt;Hunger&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s8&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;⇒&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s9&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Meals&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s10&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;font-style: italic;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;by&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s11&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Stacks&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s12&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;⇒&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s13&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Meals&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s14&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;font-style: italic;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;by&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s15&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Yield&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s16&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;⇒&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s15&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Meals&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Fern]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Flower]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Milk]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1ml&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 237px; left: -1px;&amp;quot;&amp;gt;100ml [[Soy Oil]], 50g [[Fenoxitone Powder]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Chemistry Station]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Soy Oil]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1ml&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1 [[Soybean]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s26 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: none;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 123px; left: -1px;&amp;quot;&amp;gt;[[Reagent Processor]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Soybean]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;10%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;10,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Wheat]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;10%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;10,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Tomato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;30%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,3&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;6,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;3&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;18,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Pumpkin Pie]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;17%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;5,9&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;5,9&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;5,9&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 237px; left: -1px;&amp;quot;&amp;gt;100g [[Flour]], 1 [[Egg]], 10ml [[Milk]], 1 [[Pumpkin]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Mushroom]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;4,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;8,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Potato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;4,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;3&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;12,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Muffin]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;50%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;50g [[Flour]], 1 [[Egg]], 10ml [[Milk]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Fries]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;63%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0.5ml [[Soy Oil]], 1 [[Potato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Pumpkin]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Rice]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;50&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 81px; left: -1px;&amp;quot;&amp;gt;[[Baked potato]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;80%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,8&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,8&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,8&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1 [[Potato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 81px; left: -1px;&amp;quot;&amp;gt;[[Tomato Soup]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;70%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,7&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,7&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,7&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1 [[Tomato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Cereal Bar]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;60%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;50g [[Flour]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s27&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Corn]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s28&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s8&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s28&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s8&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s28&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s8&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s29&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s12&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s30&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;5&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s12&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s31&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s16&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s32&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s16&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s32&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s27&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s27&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Food storage ==&lt;br /&gt;
Food decays at a rate determined by the environment it is stored in. The main factors are gas composition of surrounding atmosphere, temperature of the surrounding atmosphere, pressure of the atmosphere, and whether or not the item is in a fridge. Decay rate multipliers for a given gas are listed below:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Gas !! Decay Rate Multiplier&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Nitrogen|Nitrogen (N&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]] || 0.6&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Carbon Dioxide|Carbon Dioxide (CO&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]] || 0.8&lt;br /&gt;
|-&lt;br /&gt;
| Vacuum || 1&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Volatiles|Volatiles (H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]] || 1&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Oxygen|Oxygen (O&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]] || 1.5&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Nitrous Oxide|Nitrous Oxide (N&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;O)]] || 1.5&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Water|Water (H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;O)]] || 2&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Pollutant|Pollutants (X)]] || 3&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Also not all foods decay here is the list of foods unaffected by decay.&lt;br /&gt;
*[[Cereal Bar|Cereal Bars]]&lt;br /&gt;
*[[Corn Soup]]&lt;br /&gt;
*[[Pumpkin Soup]]&lt;br /&gt;
*[[Tomato Soup]]&lt;br /&gt;
The Soups being canned goods, and the cereal bar being a processed food hence why they do not decay.&lt;br /&gt;
&lt;br /&gt;
The decay rate also contains a factor determined by temperature, the pressure of the environment, as the food that needs to be preserved now has to be above 101 Kpa as preservation gets debuffed if its below 1 earth atmosphere. And the temperature decay factor is a complicated calculation summarized in the graph below ([https://www.reddit.com/r/Stationeers/comments/mrxwhp/decaying_food_gastemperature_data_math/guth0bt/ /u/LordRavenX, 04/2021]):&lt;br /&gt;
&lt;br /&gt;
[[File:FoodDecayFactorVsTempK.png|800px|Decay factor vs. temp Kelvin by [https://www.reddit.com/r/Stationeers/comments/mrxwhp/decaying_food_gastemperature_data_math/guth0bt/ /u/LordRavenX, 04/2021]]]&lt;br /&gt;
&lt;br /&gt;
Storage of food within a powered fridge also multiplies by a factor of 0.3, reducing decay by 70%.&lt;br /&gt;
&lt;br /&gt;
To minimize decay, food should be kept in a powered fridge in a nitrogen atmosphere of over 101kpa at a temperature of at least 110K (-163°C) as the calculation has been tweaked to not penalize preservation for being to cold.&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Guide_(Farming)&amp;diff=12562</id>
		<title>Guide (Farming)</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Guide_(Farming)&amp;diff=12562"/>
		<updated>2022-07-20T12:43:17Z</updated>

		<summary type="html">&lt;p&gt;Wark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Food]]&lt;br /&gt;
== Info ==&lt;br /&gt;
=== Choose Farming Plot ===&lt;br /&gt;
As of version 0.2.2865.14293 (The Food For Thought Update), 4 farming plot items are available in normal gameplay, [[Portable Hydroponics]], [[Planter]], [[Hydroponic Tray]] and [[Hydroponic Station]]. [[Automated Hydroponics]] is labeled obsolete thus only accessible via creative mode.&lt;br /&gt;
* [[Portable Hydroponics]], early game item&lt;br /&gt;
**pros&lt;br /&gt;
***Early game item, normally provided in starter crate. &lt;br /&gt;
***No piping needed. Insert starter water canister can last a long time.&lt;br /&gt;
**cons&lt;br /&gt;
***Can not be automated.&lt;br /&gt;
***Portable item, clutters base floor.&lt;br /&gt;
***Requires external lighting (sun/ [[Grow Light]])&lt;br /&gt;
* [[Planter]], early game item&lt;br /&gt;
**pros&lt;br /&gt;
***Early game item, do not need alloy to build.&lt;br /&gt;
***No piping needed. Accepts water canister, water bottle, or dedicated water pipe.&lt;br /&gt;
***Can be automated.&lt;br /&gt;
**cons&lt;br /&gt;
***When not using liquid pipe, watering the plant can be labor-intensive. &lt;br /&gt;
***Has only one water port so it can not be chained, making the green house layout less compact.&lt;br /&gt;
***Requires external lighting (sun/ [[Grow Light]])&lt;br /&gt;
* [[Hydroponic Tray]], mid/end game item&lt;br /&gt;
**pros&lt;br /&gt;
***Do not need alloy to build.&lt;br /&gt;
***Can be automated.&lt;br /&gt;
***Extremely space-efficient, one plot per small grid.&lt;br /&gt;
**cons&lt;br /&gt;
***Requires piping network to feed water.&lt;br /&gt;
***Requires external lighting (sun/ [[Grow Light]])&lt;br /&gt;
*[[Hydroponic Station]], mid/end game item&lt;br /&gt;
**pros&lt;br /&gt;
***Built-in light source.&lt;br /&gt;
**cons&lt;br /&gt;
***Requires steel to build.&lt;br /&gt;
***Can not be automated.&lt;br /&gt;
***bulky, 4 plot for 3x4 small grid, not space-efficient.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Setup === &lt;br /&gt;
Farming plants can be done with [[Portable Hydroponics]], [[Planter]], [[Hydroponic Tray]] or [[Hydroponic Station]]. All of them use an open-top design so a controlled atmosphere (greenhouse) is required to operate this equipment.&lt;br /&gt;
* &#039;&#039;&#039;Using [[Portable Hydroponics]], [[Planter]], [[Hydroponic Tray]] or [[Hydroponic Station]]&#039;&#039;&#039;&lt;br /&gt;
# Build an airtight room with an airlock. Use [[Circuitboard_(Airlock)|simple airlock]] if the environment outside is a vacuum, or [[Circuitboard_(Advanced_Airlock)|advanced airlock]] if the outside world has pressure.&lt;br /&gt;
#* If you plan to rely on [[Grow Light]] or [[Hydroponic Station]], direct sunlight is not required so you can build the greenhouse anywhere using any material.&lt;br /&gt;
#* If you want to use sunlight as well, the greenhouse should be planned with maximum sun exposure in mind, and all walls/ceilings facing the sun trajectory are made of glass. &lt;br /&gt;
# Build an entire set of pressure/temperature/gasMixture control for the greenhouse, either manual system or automated (via [[Kit_(Logic_I/O)|logic chips]] or [[Integrated_Circuit_(IC10)|programable IC chip]]). Make sure the following conditions are met, or the plant will wither through a declining health bar:&lt;br /&gt;
#* 7.7KPa &amp;lt; Pressure &amp;lt; 190KPa. Glass panel collapses near 200KPa pressure difference.&lt;br /&gt;
#* 15&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt;C &amp;lt; Air Temperature &amp;lt; 50&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt;C.&lt;br /&gt;
#* Atmosphere and pipes being mostly free of [[pollutant]]s and [[volatiles]], maximum of 3mols for volatiles.&lt;br /&gt;
#* 40 kPa atmosphere of minimum 1% [[Carbon_Dioxide|carbon dioxide]]. &lt;br /&gt;
#* 5&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt;C &amp;lt; Water Temperature &amp;lt; 60&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt;C.&lt;br /&gt;
# Provide grow beds with water, or the plant will wither through a declining health bar. Insert a canister of water into the slot of [[Portable Hydroponics]]. Apply water bottle or water canister directly on [[Planter]]. Connect [[Hydroponic Tray]], [[Planter]] or [[Hydroponic Station]] to a liquid pipe network containing water.&lt;br /&gt;
# Seed the farming plot. Can be done with either seeds or raw fruits.&lt;br /&gt;
# Provide illumination to the plants. Activate the UV light on [[Hydroponic Station]], turn on your dedicated [[Grow Light]], or wait till the sun comes up. The plant won&#039;t die for lack of light exposure, merely stops growing. Low sunlight strength on Europa will produce a misleading warning saying &#039;no sunlight&#039;, but really it is just growing at a reduced rate.&lt;br /&gt;
# [[Fertilizer]] (obtained through [[Portable Composter]] or [[Advanced Composter]]) can be used to speed up growth or boost yield depending on how it is made. More detail to be added. &lt;br /&gt;
# There is a seed mature stage right before the fruit mature stage, so seed harvesting is time-sensitive. Point cursor at the plant at the right growth stage there will be a hint saying how many seeds are available for harvesting. If one waited too long there won&#039;t be any seed left, only fruits. You can however replant fruit as if it&#039;s a seed. Harvesting seeds does not affect fruit yield. &lt;br /&gt;
# Wait till the fruit matures(cursor hints current yield), and harvest. The current patch note says the decay timer begins when the fruit matures, even when it is still left on the tree. &lt;br /&gt;
# A healthy plant consumes water and [[Carbon_Dioxide|carbon dioxide]], then produces oxygen and radiates heat into the surrounding atmosphere. Constant manual intervention or another feedback loop into the environment control will be necessary to keep the greenhouse running in the long term.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Using [[Automated Hydroponics]]&#039;&#039;&#039;&lt;br /&gt;
# This item is obsolete. It&#039;s only accessible in creative mode. Check [[Automated Hydroponics|its own article]] for detail.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Fertilizer ===&lt;br /&gt;
The following data was collected on tomatoes in version 0.2.3456&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Fertilizer !! Number of uses !! Tomato growth speed, planting to mature !! Tomato yield (seeds and produce)&lt;br /&gt;
|-&lt;br /&gt;
| none || n/a || 582 seconds || 2&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 3 biomass || 7 || 395 seconds || 4&lt;br /&gt;
|-&lt;br /&gt;
| 3 food || 3 || 300 seconds || 5&lt;br /&gt;
|-&lt;br /&gt;
| 3 decayed food || 3 || 268 seconds || 4&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 1 biomass + 1 food + 1 decayed || 3 || 300 seconds || 4&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 2 biomass + 1 food || 4 || 350 seconds || 4&lt;br /&gt;
|-&lt;br /&gt;
| 2 biomass + 1 decayed || 4 || 335 seconds || 4&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 2 food + 1 biomass || 3 || 340 seconds || 5&lt;br /&gt;
|-&lt;br /&gt;
| 2 decayed + 1 biomass || 3 || 314 seconds || 4&lt;br /&gt;
|-&lt;br /&gt;
| 3 food + 3 biomass || 4 || 333 seconds || 5&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Fastest way to create decayed food:&#039;&#039;&#039;&lt;br /&gt;
* Gas: X&lt;br /&gt;
* Pressure: &amp;lt;0.2 kPa&lt;br /&gt;
* Temperature: &amp;gt;200°C&lt;br /&gt;
* A [[Fridge (small)]] is perfect for this&lt;br /&gt;
* Cooked food decays faster than raw&lt;br /&gt;
* Gas at very low pressures can&#039;t be heated by a [[Pipe Heater]], heat the gas before reducing the pressure.&lt;br /&gt;
&lt;br /&gt;
===Plant consumption and production of gases and water===&lt;br /&gt;
version 0.2.3456&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Plant !! Temperature (air) !! H2O (mol/tick)!! CarbonDioxide (mol/tick)!! Oxygen (mol/tick)!! Volatiles (mol/tick)!! Nitrogen (mol/tick)!! NitrousOxide (mol/tick)!! Pollutant (mol/tick)&lt;br /&gt;
|-&lt;br /&gt;
| Food crops + fern + flowers || 15-52°C || -0.00000596 || -0.00240 || +0.00120 || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Tropical Lily || 17-56°C || -0.00000596 || -0.00400 || +0.00200 || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Peace Lily || 13-52°C || -0.00000596 || -0.00400 || +0.00200 || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Darga fern || 15-52°C || -0.00000596 || -0.01700 || +0.00850 || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Mushrooms&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || 15-52°C || -0.00000596 || +0.00120 || -0.00240 || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Winterspawn, alpha || best at ~18°C || -0.00020000 || || +0.000181&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; || +0.000362&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; || -0.0060 || ||&lt;br /&gt;
|-&lt;br /&gt;
| Winterspawn, beta || best at ~20°C || -0.00040000 || || +0.000281&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; || +0.000562&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; || -0.0100 || ||&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Hades, alpha || ? || -0.00000596 || || -?&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; || -?&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; || || || +0.0040&lt;br /&gt;
|-&lt;br /&gt;
| Hades, beta || ? || -0.00000596 || || -?&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; || -?&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; || || || +0.0025&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Alien mushroom || ? || -0.00000600 || || +0.00080 || || +0.00120 || -0.00480 ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* 1: only grows in darkness&lt;br /&gt;
* 2: depends on temperature, alpha is max at ~18°C and beta at 20°C, the plant must be mature&lt;br /&gt;
* 3: depends on the O2 and H2 concentration&lt;br /&gt;
* Comment: Plants have been observed to consume much less CO2 when the air has a low concentration of it, with O2 still being produced at full capacity. The reverse is also true for mushrooms. Water doesn&#039;t behave like this, below a certain amount a tray will no longer count as hydrated and the plant will start dying.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Efficiency of raw food and meals === &amp;lt;!--T:3--&amp;gt;&lt;br /&gt;
The following table compares the sustainability of everything eatable in &#039;&#039;meals&#039;&#039;:&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;(&#039;&#039;&#039;1 meal&#039;&#039;&#039; satisfies &#039;&#039;&#039;100% of hunger&#039;&#039;&#039;. In this way, &#039;&#039;&#039;1 [[muffin]]&#039;&#039;&#039; for example satisfies &#039;&#039;&#039;200% of hunger&#039;&#039;&#039;, which sufficient for &#039;&#039;&#039;2 full meals&#039;&#039;&#039;.)&amp;lt;/small&amp;gt;&lt;br /&gt;
* per &#039;&#039;&#039;unit&#039;&#039;&#039; &amp;lt;small&amp;gt;(e.g. 1 [[Cereal Bar|cereal bar]], 1 [[tomato]] or 1ml of [[milk]].)&amp;lt;/small&amp;gt;&lt;br /&gt;
* per &#039;&#039;&#039;stack&#039;&#039;&#039; &amp;lt;small&amp;gt;(e.g. 20 [[mushroom|mushrooms]] or 5 raw [[corn]] grains.)&amp;lt;/small&amp;gt;&lt;br /&gt;
* per &#039;&#039;&#039;plant&#039;&#039;&#039; / &#039;&#039;&#039;grow cycle&#039;&#039;&#039; &amp;lt;small&amp;gt;(e.g. some [[soybean|soybeans]] or [[pumpkin|pumpkins]], which grow to &#039;&#039;several&#039;&#039; &amp;lt;small&amp;gt;(more than 1)&amp;lt;/small&amp;gt; on their plants.)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Ordered List of plantables and cookables == &amp;lt;!--T:6--&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;ritz grid-container&amp;quot; dir=&amp;quot;ltr&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;table class=&amp;quot;waffle&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s0&amp;quot; dir=&amp;quot;ltr&amp;quot; rowspan=&amp;quot;3&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Name&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s0&amp;quot; dir=&amp;quot;ltr&amp;quot; colspan=&amp;quot;15&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Efficiency&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s0&amp;quot; dir=&amp;quot;ltr&amp;quot; rowspan=&amp;quot;3&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Ingredients&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s0&amp;quot; dir=&amp;quot;ltr&amp;quot; rowspan=&amp;quot;3&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;grows / prepare in&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s1&amp;quot; dir=&amp;quot;ltr&amp;quot; colspan=&amp;quot;7&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #efefef;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;(short range)&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s2&amp;quot; dir=&amp;quot;ltr&amp;quot; colspan=&amp;quot;4&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #cccccc;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;(medium range)&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s3&amp;quot; dir=&amp;quot;ltr&amp;quot; colspan=&amp;quot;4&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #999999;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;(long range)&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s4&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Portion&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s5&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;font-style: italic;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;of&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s4&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Unit&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s6&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: none;background-color: #efefef;text-align: center;font-style: italic;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;do&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s7 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-left: none;background-color: #efefef;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 52px; left: -3px;&amp;quot;&amp;gt;Hunger&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s8&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;⇒&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s9&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Meals&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s10&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;font-style: italic;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;by&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s11&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Stacks&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s12&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;⇒&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s13&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Meals&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s14&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;font-style: italic;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;by&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s15&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Yield&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s16&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;⇒&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s15&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Meals&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Fern]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Flower]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Milk]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1ml&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 237px; left: -1px;&amp;quot;&amp;gt;100ml [[Soy Oil]], 50g [[Fenoxitone Powder]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Chemistry Station]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Soy Oil]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1ml&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1 [[Soybean]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s26 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: none;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 123px; left: -1px;&amp;quot;&amp;gt;[[Reagent Processor]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Soybean]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;10%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;10,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Wheat]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;10%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;10,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Tomato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;30%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,3&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;6,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;3&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;18,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Pumpkin Pie]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;17%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;5,9&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;5,9&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;5,9&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 237px; left: -1px;&amp;quot;&amp;gt;100g [[Flour]], 1 [[Egg]], 10ml [[Milk]], 1 [[Pumpkin]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Mushroom]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;4,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;8,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Potato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;4,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;3&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;12,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Muffin]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;50%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;50g [[Flour]], 1 [[Egg]], 10ml [[Milk]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Fries]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;63%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0.5ml [[Soy Oil]], 1 [[Potato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Pumpkin]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Rice]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;50&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 81px; left: -1px;&amp;quot;&amp;gt;[[Baked potato]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;80%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,8&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,8&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,8&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1 [[Potato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 81px; left: -1px;&amp;quot;&amp;gt;[[Tomato Soup]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;70%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,7&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,7&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,7&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1 [[Tomato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Cereal Bar]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;60%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;50g [[Flour]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s27&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Corn]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s28&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s8&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s28&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s8&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s28&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s8&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s29&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s12&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s30&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;5&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s12&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s31&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s16&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s32&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s16&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s32&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s27&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s27&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Food storage ==&lt;br /&gt;
Food decays at a rate determined by the environment it is stored in. The main factors are gas composition of surrounding atmosphere, temperature of the surrounding atmosphere, pressure of the atmosphere, and whether or not the item is in a fridge. Decay rate multipliers for a given gas are listed below:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Gas !! Decay Rate Multiplier&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Nitrogen|Nitrogen (N&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]] || 0.6&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Carbon Dioxide|Carbon Dioxide (CO&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]] || 0.8&lt;br /&gt;
|-&lt;br /&gt;
| Vacuum || 1&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Volatiles|Volatiles (H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]] || 1&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Oxygen|Oxygen (O&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]] || 1.5&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Nitrous Oxide|Nitrous Oxide (N&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;O)]] || 1.5&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Water|Water (H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;O)]] || 2&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Pollutant|Pollutants (X)]] || 3&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Also not all foods decay here is the list of foods unaffected by decay.&lt;br /&gt;
*[[Cereal Bar|Cereal Bars]]&lt;br /&gt;
*[[Corn Soup]]&lt;br /&gt;
*[[Pumpkin Soup]]&lt;br /&gt;
*[[Tomato Soup]]&lt;br /&gt;
The Soups being canned goods, and the cereal bar being a processed food hence why they do not decay.&lt;br /&gt;
&lt;br /&gt;
The decay rate also contains a factor determined by temperature, the pressure of the environment, as the food that needs to be preserved now has to be above 101 Kpa as preservation gets debuffed if its below 1 earth atmosphere. And the temperature decay factor is a complicated calculation summarized in the graph below ([https://www.reddit.com/r/Stationeers/comments/mrxwhp/decaying_food_gastemperature_data_math/guth0bt/ /u/LordRavenX, 04/2021]):&lt;br /&gt;
&lt;br /&gt;
[[File:FoodDecayFactorVsTempK.png|800px|Decay factor vs. temp Kelvin by [https://www.reddit.com/r/Stationeers/comments/mrxwhp/decaying_food_gastemperature_data_math/guth0bt/ /u/LordRavenX, 04/2021]]]&lt;br /&gt;
&lt;br /&gt;
Storage of food within a powered fridge also multiplies by a factor of 0.3, reducing decay by 70%.&lt;br /&gt;
&lt;br /&gt;
To minimize decay, food should be kept in a powered fridge in a nitrogen atmosphere of over 101kpa at a temperature of at least 110K (-163°C) as the calculation has been tweaked to not penalize preservation for being to cold.&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Guide_(Farming)&amp;diff=12555</id>
		<title>Guide (Farming)</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Guide_(Farming)&amp;diff=12555"/>
		<updated>2022-07-19T16:52:58Z</updated>

		<summary type="html">&lt;p&gt;Wark: /* Fertilizer */ changed to total growth time instead of time per stage&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Food]]&lt;br /&gt;
== Info ==&lt;br /&gt;
=== Choose Farming Plot ===&lt;br /&gt;
As of version 0.2.2865.14293 (The Food For Thought Update), 4 farming plot items are available in normal gameplay, [[Portable Hydroponics]], [[Planter]], [[Hydroponic Tray]] and [[Hydroponic Station]]. [[Automated Hydroponics]] is labeled obsolete thus only accessible via creative mode.&lt;br /&gt;
* [[Portable Hydroponics]], early game item&lt;br /&gt;
**pros&lt;br /&gt;
***Early game item, normally provided in starter crate. &lt;br /&gt;
***No piping needed. Insert starter water canister can last a long time.&lt;br /&gt;
**cons&lt;br /&gt;
***Can not be automated.&lt;br /&gt;
***Portable item, clutters base floor.&lt;br /&gt;
***Requires external lighting (sun/ [[Grow Light]])&lt;br /&gt;
* [[Planter]], early game item&lt;br /&gt;
**pros&lt;br /&gt;
***Early game item, do not need alloy to build.&lt;br /&gt;
***No piping needed. Accepts water canister, water bottle, or dedicated water pipe.&lt;br /&gt;
***Can be automated.&lt;br /&gt;
**cons&lt;br /&gt;
***When not using liquid pipe, watering the plant can be labor-intensive. &lt;br /&gt;
***Has only one water port so it can not be chained, making the green house layout less compact.&lt;br /&gt;
***Requires external lighting (sun/ [[Grow Light]])&lt;br /&gt;
* [[Hydroponic Tray]], mid/end game item&lt;br /&gt;
**pros&lt;br /&gt;
***Do not need alloy to build.&lt;br /&gt;
***Can be automated.&lt;br /&gt;
***Extremely space-efficient, one plot per small grid.&lt;br /&gt;
**cons&lt;br /&gt;
***Requires piping network to feed water.&lt;br /&gt;
***Requires external lighting (sun/ [[Grow Light]])&lt;br /&gt;
*[[Hydroponic Station]], mid/end game item&lt;br /&gt;
**pros&lt;br /&gt;
***Built-in light source.&lt;br /&gt;
**cons&lt;br /&gt;
***Requires steel to build.&lt;br /&gt;
***Can not be automated.&lt;br /&gt;
***bulky, 4 plot for 3x4 small grid, not space-efficient.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Setup === &lt;br /&gt;
Farming plants can be done with [[Portable Hydroponics]], [[Planter]], [[Hydroponic Tray]] or [[Hydroponic Station]]. All of them use an open-top design so a controlled atmosphere (greenhouse) is required to operate this equipment.&lt;br /&gt;
* &#039;&#039;&#039;Using [[Portable Hydroponics]], [[Planter]], [[Hydroponic Tray]] or [[Hydroponic Station]]&#039;&#039;&#039;&lt;br /&gt;
# Build an airtight room with an airlock. Use [[Circuitboard_(Airlock)|simple airlock]] if the environment outside is a vacuum, or [[Circuitboard_(Advanced_Airlock)|advanced airlock]] if the outside world has pressure.&lt;br /&gt;
#* If you plan to rely on [[Grow Light]] or [[Hydroponic Station]], direct sunlight is not required so you can build the greenhouse anywhere using any material.&lt;br /&gt;
#* If you want to use sunlight as well, the greenhouse should be planned with maximum sun exposure in mind, and all walls/ceilings facing the sun trajectory are made of glass. &lt;br /&gt;
# Build an entire set of pressure/temperature/gasMixture control for the greenhouse, either manual system or automated (via [[Kit_(Logic_I/O)|logic chips]] or [[Integrated_Circuit_(IC10)|programable IC chip]]). Make sure the following conditions are met, or the plant will wither through a declining health bar:&lt;br /&gt;
#* 7.7KPa &amp;lt; Pressure &amp;lt; 190KPa. Glass panel collapses near 200KPa pressure difference.&lt;br /&gt;
#* 15&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt;C &amp;lt; Air Temperature &amp;lt; 50&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt;C.&lt;br /&gt;
#* Atmosphere and pipes being mostly free of [[pollutant]]s and [[volatiles]], maximum of 3mols for volatiles.&lt;br /&gt;
#* 40 kPa atmosphere of minimum 1% [[Carbon_Dioxide|carbon dioxide]]. &lt;br /&gt;
#* 5&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt;C &amp;lt; Water Temperature &amp;lt; 60&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt;C.&lt;br /&gt;
# Provide grow beds with water, or the plant will wither through a declining health bar. Insert a canister of water into the slot of [[Portable Hydroponics]]. Apply water bottle or water canister directly on [[Planter]]. Connect [[Hydroponic Tray]], [[Planter]] or [[Hydroponic Station]] to a liquid pipe network containing water.&lt;br /&gt;
# Seed the farming plot. Can be done with either seeds or raw fruits.&lt;br /&gt;
# Provide illumination to the plants. Activate the UV light on [[Hydroponic Station]], turn on your dedicated [[Grow Light]], or wait till the sun comes up. The plant won&#039;t die for lack of light exposure, merely stops growing. Low sunlight strength on Europa will produce a misleading warning saying &#039;no sunlight&#039;, but really it is just growing at a reduced rate.&lt;br /&gt;
# [[Fertilizer]] (obtained through [[Portable Composter]] or [[Advanced Composter]]) can be used to speed up growth or boost yield depending on how it is made. More detail to be added. &lt;br /&gt;
# There is a seed mature stage right before the fruit mature stage, so seed harvesting is time-sensitive. Point cursor at the plant at the right growth stage there will be a hint saying how many seeds are available for harvesting. If one waited too long there won&#039;t be any seed left, only fruits. You can however replant fruit as if it&#039;s a seed. Harvesting seeds does not affect fruit yield. &lt;br /&gt;
# Wait till the fruit matures(cursor hints current yield), and harvest. The current patch note says the decay timer begins when the fruit matures, even when it is still left on the tree. &lt;br /&gt;
# A healthy plant consumes water and [[Carbon_Dioxide|carbon dioxide]], then produces oxygen and radiates heat into the surrounding atmosphere. Constant manual intervention or another feedback loop into the environment control will be necessary to keep the greenhouse running in the long term.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Using [[Automated Hydroponics]]&#039;&#039;&#039;&lt;br /&gt;
# This item is obsolete. It&#039;s only accessible in creative mode. Check [[Automated Hydroponics|its own article]] for detail.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Fertilizer ===&lt;br /&gt;
The following data was collected on tomatoes in version 0.2.3456&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Fertilizer !! Number of uses !! Tomato growth speed, planting to mature !! Tomato yield (seeds and produce)&lt;br /&gt;
|-&lt;br /&gt;
| none || n/a || 582 seconds || 2&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 3 biomass || 7 || 395 seconds || 4&lt;br /&gt;
|-&lt;br /&gt;
| 3 food || 3 || 300 seconds || 5&lt;br /&gt;
|-&lt;br /&gt;
| 3 decayed food || 3 || 268 seconds || 4&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 1 biomass + 1 food + 1 decayed || 3 || 300 seconds || 4&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 2 biomass + 1 food || 4 || 350 seconds || 4&lt;br /&gt;
|-&lt;br /&gt;
| 2 biomass + 1 decayed || 4 || 335 seconds || 4&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 2 food + 1 biomass || 4 || 340 seconds || 5&lt;br /&gt;
|-&lt;br /&gt;
| 2 decayed + 1 biomass || 3 || 314 seconds || 4&lt;br /&gt;
|-&lt;br /&gt;
| 1.5 food + 1.5 biomass || 3 || 329 seconds || 5&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Fastest way to create decayed food:&#039;&#039;&#039;&lt;br /&gt;
* Gas: X&lt;br /&gt;
* Pressure: &amp;lt;0.2 kPa&lt;br /&gt;
* Temperature: &amp;gt;200°C&lt;br /&gt;
* A [[Fridge (small)]] is perfect for this&lt;br /&gt;
* Cooked food decays faster than raw&lt;br /&gt;
* Gas at very low pressures can&#039;t be heated by a [[Pipe Heater]], heat the gas before reducing the pressure.&lt;br /&gt;
&lt;br /&gt;
===Plant consumption and production of gases and water===&lt;br /&gt;
version 0.2.3456&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Plant !! Temperature (air) !! H2O (mol/tick)!! CarbonDioxide (mol/tick)!! Oxygen (mol/tick)!! Volatiles (mol/tick)!! Nitrogen (mol/tick)!! NitrousOxide (mol/tick)!! Pollutant (mol/tick)&lt;br /&gt;
|-&lt;br /&gt;
| Food crops + fern + flowers || 15-52°C || -0.00000596 || -0.00240 || +0.00120 || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Tropical Lily || 17-56°C || -0.00000596 || -0.00400 || +0.00200 || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Peace Lily || 13-52°C || -0.00000596 || -0.00400 || +0.00200 || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Darga fern || 15-52°C || -0.00000596 || -0.01700 || +0.00850 || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Mushrooms&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || 15-52°C || -0.00000596 || +0.00120 || -0.00240 || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Winterspawn, alpha || best at ~18°C || -0.00020000 || || +0.000181&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; || +0.000362&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; || -0.0060 || ||&lt;br /&gt;
|-&lt;br /&gt;
| Winterspawn, beta || best at ~20°C || -0.00040000 || || +0.000281&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; || +0.000562&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; || -0.0100 || ||&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Hades, alpha || ? || -0.00000596 || || -?&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; || -?&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; || || || +0.0040&lt;br /&gt;
|-&lt;br /&gt;
| Hades, beta || ? || -0.00000596 || || -?&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; || -?&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; || || || +0.0025&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Alien mushroom || ? || -0.00000600 || || +0.00080 || || +0.00120 || -0.00480 ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* 1: only grows in darkness&lt;br /&gt;
* 2: depends on temperature, alpha is max at ~18°C and beta at 20°C, the plant must be mature&lt;br /&gt;
* 3: depends on the O2 and H2 concentration&lt;br /&gt;
* Comment: Plants have been observed to consume much less CO2 when the air has a low concentration of it, with O2 still being produced at full capacity. The reverse is also true for mushrooms. Water doesn&#039;t behave like this, below a certain amount a tray will no longer count as hydrated and the plant will start dying.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Efficiency of raw food and meals === &amp;lt;!--T:3--&amp;gt;&lt;br /&gt;
The following table compares the sustainability of everything eatable in &#039;&#039;meals&#039;&#039;:&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;(&#039;&#039;&#039;1 meal&#039;&#039;&#039; satisfies &#039;&#039;&#039;100% of hunger&#039;&#039;&#039;. In this way, &#039;&#039;&#039;1 [[muffin]]&#039;&#039;&#039; for example satisfies &#039;&#039;&#039;200% of hunger&#039;&#039;&#039;, which sufficient for &#039;&#039;&#039;2 full meals&#039;&#039;&#039;.)&amp;lt;/small&amp;gt;&lt;br /&gt;
* per &#039;&#039;&#039;unit&#039;&#039;&#039; &amp;lt;small&amp;gt;(e.g. 1 [[Cereal Bar|cereal bar]], 1 [[tomato]] or 1ml of [[milk]].)&amp;lt;/small&amp;gt;&lt;br /&gt;
* per &#039;&#039;&#039;stack&#039;&#039;&#039; &amp;lt;small&amp;gt;(e.g. 20 [[mushroom|mushrooms]] or 5 raw [[corn]] grains.)&amp;lt;/small&amp;gt;&lt;br /&gt;
* per &#039;&#039;&#039;plant&#039;&#039;&#039; / &#039;&#039;&#039;grow cycle&#039;&#039;&#039; &amp;lt;small&amp;gt;(e.g. some [[soybean|soybeans]] or [[pumpkin|pumpkins]], which grow to &#039;&#039;several&#039;&#039; &amp;lt;small&amp;gt;(more than 1)&amp;lt;/small&amp;gt; on their plants.)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Ordered List of plantables and cookables == &amp;lt;!--T:6--&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;ritz grid-container&amp;quot; dir=&amp;quot;ltr&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;table class=&amp;quot;waffle&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s0&amp;quot; dir=&amp;quot;ltr&amp;quot; rowspan=&amp;quot;3&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Name&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s0&amp;quot; dir=&amp;quot;ltr&amp;quot; colspan=&amp;quot;15&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Efficiency&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s0&amp;quot; dir=&amp;quot;ltr&amp;quot; rowspan=&amp;quot;3&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Ingredients&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s0&amp;quot; dir=&amp;quot;ltr&amp;quot; rowspan=&amp;quot;3&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;grows / prepare in&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s1&amp;quot; dir=&amp;quot;ltr&amp;quot; colspan=&amp;quot;7&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #efefef;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;(short range)&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s2&amp;quot; dir=&amp;quot;ltr&amp;quot; colspan=&amp;quot;4&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #cccccc;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;(medium range)&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s3&amp;quot; dir=&amp;quot;ltr&amp;quot; colspan=&amp;quot;4&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #999999;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;(long range)&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s4&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Portion&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s5&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;font-style: italic;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;of&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s4&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Unit&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s6&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: none;background-color: #efefef;text-align: center;font-style: italic;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;do&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s7 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-left: none;background-color: #efefef;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 52px; left: -3px;&amp;quot;&amp;gt;Hunger&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s8&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;⇒&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s9&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Meals&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s10&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;font-style: italic;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;by&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s11&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Stacks&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s12&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;⇒&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s13&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Meals&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s14&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;font-style: italic;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;by&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s15&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Yield&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s16&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;⇒&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s15&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Meals&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Fern]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Flower]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Milk]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1ml&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 237px; left: -1px;&amp;quot;&amp;gt;100ml [[Soy Oil]], 50g [[Fenoxitone Powder]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Chemistry Station]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Soy Oil]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1ml&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1 [[Soybean]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s26 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: none;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 123px; left: -1px;&amp;quot;&amp;gt;[[Reagent Processor]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Soybean]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;10%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;10,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Wheat]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;10%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;10,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Tomato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;30%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,3&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;6,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;3&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;18,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Pumpkin Pie]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;17%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;5,9&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;5,9&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;5,9&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 237px; left: -1px;&amp;quot;&amp;gt;100g [[Flour]], 1 [[Egg]], 10ml [[Milk]], 1 [[Pumpkin]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Mushroom]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;4,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;8,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Potato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;4,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;3&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;12,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Muffin]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;50%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;50g [[Flour]], 1 [[Egg]], 10ml [[Milk]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Fries]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;63%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0.5ml [[Soy Oil]], 1 [[Potato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Pumpkin]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Rice]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;50&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 81px; left: -1px;&amp;quot;&amp;gt;[[Baked potato]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;80%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,8&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,8&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,8&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1 [[Potato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 81px; left: -1px;&amp;quot;&amp;gt;[[Tomato Soup]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;70%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,7&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,7&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,7&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1 [[Tomato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Cereal Bar]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;60%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;50g [[Flour]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s27&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Corn]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s28&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s8&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s28&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s8&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s28&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s8&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s29&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s12&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s30&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;5&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s12&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s31&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s16&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s32&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s16&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s32&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s27&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s27&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Food storage ==&lt;br /&gt;
Food decays at a rate determined by the environment it is stored in. The main factors are gas composition of surrounding atmosphere, temperature of the surrounding atmosphere, pressure of the atmosphere, and whether or not the item is in a fridge. Decay rate multipliers for a given gas are listed below:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Gas !! Decay Rate Multiplier&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Nitrogen|Nitrogen (N&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]] || 0.6&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Carbon Dioxide|Carbon Dioxide (CO&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]] || 0.8&lt;br /&gt;
|-&lt;br /&gt;
| Vacuum || 1&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Volatiles|Volatiles (H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]] || 1&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Oxygen|Oxygen (O&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]] || 1.5&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Nitrous Oxide|Nitrous Oxide (N&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;O)]] || 1.5&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Water|Water (H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;O)]] || 2&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Pollutant|Pollutants (X)]] || 3&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Also not all foods decay here is the list of foods unaffected by decay.&lt;br /&gt;
*[[Cereal Bar|Cereal Bars]]&lt;br /&gt;
*[[Corn Soup]]&lt;br /&gt;
*[[Pumpkin Soup]]&lt;br /&gt;
*[[Tomato Soup]]&lt;br /&gt;
The Soups being canned goods, and the cereal bar being a processed food hence why they do not decay.&lt;br /&gt;
&lt;br /&gt;
The decay rate also contains a factor determined by temperature, the pressure of the environment, as the food that needs to be preserved now has to be above 101 Kpa as preservation gets debuffed if its below 1 earth atmosphere. And the temperature decay factor is a complicated calculation summarized in the graph below ([https://www.reddit.com/r/Stationeers/comments/mrxwhp/decaying_food_gastemperature_data_math/guth0bt/ /u/LordRavenX, 04/2021]):&lt;br /&gt;
&lt;br /&gt;
[[File:FoodDecayFactorVsTempK.png|800px|Decay factor vs. temp Kelvin by [https://www.reddit.com/r/Stationeers/comments/mrxwhp/decaying_food_gastemperature_data_math/guth0bt/ /u/LordRavenX, 04/2021]]]&lt;br /&gt;
&lt;br /&gt;
Storage of food within a powered fridge also multiplies by a factor of 0.3, reducing decay by 70%.&lt;br /&gt;
&lt;br /&gt;
To minimize decay, food should be kept in a powered fridge in a nitrogen atmosphere of over 101kpa at a temperature of at least 110K (-163°C) as the calculation has been tweaked to not penalize preservation for being to cold.&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Guide_(Farming)&amp;diff=12551</id>
		<title>Guide (Farming)</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Guide_(Farming)&amp;diff=12551"/>
		<updated>2022-07-19T14:50:33Z</updated>

		<summary type="html">&lt;p&gt;Wark: added a table for plants and their consumption and production of gases and water&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Food]]&lt;br /&gt;
== Info ==&lt;br /&gt;
=== Choose Farming Plot ===&lt;br /&gt;
As of version 0.2.2865.14293 (The Food For Thought Update), 4 farming plot items are available in normal gameplay, [[Portable Hydroponics]], [[Planter]], [[Hydroponic Tray]] and [[Hydroponic Station]]. [[Automated Hydroponics]] is labeled obsolete thus only accessible via creative mode.&lt;br /&gt;
* [[Portable Hydroponics]], early game item&lt;br /&gt;
**pros&lt;br /&gt;
***Early game item, normally provided in starter crate. &lt;br /&gt;
***No piping needed. Insert starter water canister can last a long time.&lt;br /&gt;
**cons&lt;br /&gt;
***Can not be automated.&lt;br /&gt;
***Portable item, clutters base floor.&lt;br /&gt;
***Requires external lighting (sun/ [[Grow Light]])&lt;br /&gt;
* [[Planter]], early game item&lt;br /&gt;
**pros&lt;br /&gt;
***Early game item, do not need alloy to build.&lt;br /&gt;
***No piping needed. Accepts water canister, water bottle, or dedicated water pipe.&lt;br /&gt;
***Can be automated.&lt;br /&gt;
**cons&lt;br /&gt;
***When not using liquid pipe, watering the plant can be labor-intensive. &lt;br /&gt;
***Has only one water port so it can not be chained, making the green house layout less compact.&lt;br /&gt;
***Requires external lighting (sun/ [[Grow Light]])&lt;br /&gt;
* [[Hydroponic Tray]], mid/end game item&lt;br /&gt;
**pros&lt;br /&gt;
***Do not need alloy to build.&lt;br /&gt;
***Can be automated.&lt;br /&gt;
***Extremely space-efficient, one plot per small grid.&lt;br /&gt;
**cons&lt;br /&gt;
***Requires piping network to feed water.&lt;br /&gt;
***Requires external lighting (sun/ [[Grow Light]])&lt;br /&gt;
*[[Hydroponic Station]], mid/end game item&lt;br /&gt;
**pros&lt;br /&gt;
***Built-in light source.&lt;br /&gt;
**cons&lt;br /&gt;
***Requires steel to build.&lt;br /&gt;
***Can not be automated.&lt;br /&gt;
***bulky, 4 plot for 3x4 small grid, not space-efficient.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Setup === &lt;br /&gt;
Farming plants can be done with [[Portable Hydroponics]], [[Planter]], [[Hydroponic Tray]] or [[Hydroponic Station]]. All of them use an open-top design so a controlled atmosphere (greenhouse) is required to operate this equipment.&lt;br /&gt;
* &#039;&#039;&#039;Using [[Portable Hydroponics]], [[Planter]], [[Hydroponic Tray]] or [[Hydroponic Station]]&#039;&#039;&#039;&lt;br /&gt;
# Build an airtight room with an airlock. Use [[Circuitboard_(Airlock)|simple airlock]] if the environment outside is a vacuum, or [[Circuitboard_(Advanced_Airlock)|advanced airlock]] if the outside world has pressure.&lt;br /&gt;
#* If you plan to rely on [[Grow Light]] or [[Hydroponic Station]], direct sunlight is not required so you can build the greenhouse anywhere using any material.&lt;br /&gt;
#* If you want to use sunlight as well, the greenhouse should be planned with maximum sun exposure in mind, and all walls/ceilings facing the sun trajectory are made of glass. &lt;br /&gt;
# Build an entire set of pressure/temperature/gasMixture control for the greenhouse, either manual system or automated (via [[Kit_(Logic_I/O)|logic chips]] or [[Integrated_Circuit_(IC10)|programable IC chip]]). Make sure the following conditions are met, or the plant will wither through a declining health bar:&lt;br /&gt;
#* 7.7KPa &amp;lt; Pressure &amp;lt; 190KPa. Glass panel collapses near 200KPa pressure difference.&lt;br /&gt;
#* 15&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt;C &amp;lt; Air Temperature &amp;lt; 50&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt;C.&lt;br /&gt;
#* Atmosphere and pipes being mostly free of [[pollutant]]s and [[volatiles]], maximum of 3mols for volatiles.&lt;br /&gt;
#* 40 kPa atmosphere of minimum 1% [[Carbon_Dioxide|carbon dioxide]]. &lt;br /&gt;
#* 5&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt;C &amp;lt; Water Temperature &amp;lt; 60&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt;C.&lt;br /&gt;
# Provide grow beds with water, or the plant will wither through a declining health bar. Insert a canister of water into the slot of [[Portable Hydroponics]]. Apply water bottle or water canister directly on [[Planter]]. Connect [[Hydroponic Tray]], [[Planter]] or [[Hydroponic Station]] to a liquid pipe network containing water.&lt;br /&gt;
# Seed the farming plot. Can be done with either seeds or raw fruits.&lt;br /&gt;
# Provide illumination to the plants. Activate the UV light on [[Hydroponic Station]], turn on your dedicated [[Grow Light]], or wait till the sun comes up. The plant won&#039;t die for lack of light exposure, merely stops growing. Low sunlight strength on Europa will produce a misleading warning saying &#039;no sunlight&#039;, but really it is just growing at a reduced rate.&lt;br /&gt;
# [[Fertilizer]] (obtained through [[Portable Composter]] or [[Advanced Composter]]) can be used to speed up growth or boost yield depending on how it is made. More detail to be added. &lt;br /&gt;
# There is a seed mature stage right before the fruit mature stage, so seed harvesting is time-sensitive. Point cursor at the plant at the right growth stage there will be a hint saying how many seeds are available for harvesting. If one waited too long there won&#039;t be any seed left, only fruits. You can however replant fruit as if it&#039;s a seed. Harvesting seeds does not affect fruit yield. &lt;br /&gt;
# Wait till the fruit matures(cursor hints current yield), and harvest. The current patch note says the decay timer begins when the fruit matures, even when it is still left on the tree. &lt;br /&gt;
# A healthy plant consumes water and [[Carbon_Dioxide|carbon dioxide]], then produces oxygen and radiates heat into the surrounding atmosphere. Constant manual intervention or another feedback loop into the environment control will be necessary to keep the greenhouse running in the long term.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Using [[Automated Hydroponics]]&#039;&#039;&#039;&lt;br /&gt;
# This item is obsolete. It&#039;s only accessible in creative mode. Check [[Automated Hydroponics|its own article]] for detail.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Fertilizer ===&lt;br /&gt;
The following data was collected on tomatoes in version 0.2.3420. Tomatoes have 5 growth stages, the first stage is fastest and only takes a few seconds. The total growth time is 4 x growth speed (per stage)&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Fertilizer !! Number of uses !! Tomato growth speed (per stage) !! Tomato yield (seeds and produce)&lt;br /&gt;
|-&lt;br /&gt;
| none || n/a || ~150 seconds || 2&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 3 biomass || 7 || ~100 seconds || 4&lt;br /&gt;
|-&lt;br /&gt;
| 3 food || 3 || ~90 seconds || 5&lt;br /&gt;
|-&lt;br /&gt;
| 3 decayed food || 3 || ~60 seconds || 4&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 1 biomass + 1 food + 1 decayed || 3 || ~80 seconds || 4&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 2 biomass + 1 food || 4 || ~85 seconds || 4&lt;br /&gt;
|-&lt;br /&gt;
| 2 biomass + 1 decayed || 4 || ~80 seconds || 4&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 2 food + 1 biomass || 4 || ~90 seconds || 5&lt;br /&gt;
|-&lt;br /&gt;
| 2 food + 1 decayed || 3 || ~90 seconds || 5&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Fastest way to create decayed food:&#039;&#039;&#039;&lt;br /&gt;
* Gas: X&lt;br /&gt;
* Pressure: &amp;lt;0.2 kPa&lt;br /&gt;
* Temperature: &amp;gt;200°C&lt;br /&gt;
* A [[Fridge (small)]] is perfect for this&lt;br /&gt;
* Cooked food decays faster than raw&lt;br /&gt;
* Gas at very low pressures can&#039;t be heated by a [[Pipe Heater]], heat the gas before reducing the pressure.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Plant consumption and production of gases and water===&lt;br /&gt;
version 0.2.3456&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Plant !! Temperature (air) !! H2O (mol/tick)!! CarbonDioxide (mol/tick)!! Oxygen (mol/tick)!! Volatiles (mol/tick)!! Nitrogen (mol/tick)!! NitrousOxide (mol/tick)!! Pollutant (mol/tick)&lt;br /&gt;
|-&lt;br /&gt;
| Food crops + fern + flowers || 15-52°C || -0.00000596 || -0.00240 || +0.00120 || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Tropical Lily || 17-56°C || -0.00000596 || -0.00400 || +0.00200 || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Peace Lily || 13-52°C || -0.00000596 || -0.00400 || +0.00200 || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Darga fern || 15-52°C || -0.00000596 || -0.01700 || +0.00850 || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Mushrooms&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || 15-52°C || -0.00000596 || +0.00120 || -0.00240 || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Winterspawn, alpha || best at ~18°C || -0.00020000 || || +0.000181&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; || +0.000362&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; || -0.0060 || ||&lt;br /&gt;
|-&lt;br /&gt;
| Winterspawn, beta || best at ~20°C || -0.00040000 || || +0.000281&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; || +0.000562&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; || -0.0100 || ||&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Hades, alpha || ? || -0.00000596 || || -?&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; || -?&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; || || || +0.0040&lt;br /&gt;
|-&lt;br /&gt;
| Hades, beta || ? || -0.00000596 || || -?&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; || -?&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; || || || +0.0025&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Alien mushroom || ? || -0.00000600 || || +0.00080 || || +0.00120 || -0.00480 ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* 1: only grows in darkness&lt;br /&gt;
* 2: depends on temperature, alpha is max at ~18°C and beta at 20°C, the plant must be mature&lt;br /&gt;
* 3: depends on the O2 and H2 concentration&lt;br /&gt;
* Comment: Plants have been observed to consume much less CO2 when the air has a low concentration of it, with O2 still being produced at full capacity. The reverse is also true for mushrooms. Water doesn&#039;t behave like this, below a certain amount a tray will no longer count as hydrated and the plant will start dying.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Efficiency of raw food and meals === &amp;lt;!--T:3--&amp;gt;&lt;br /&gt;
The following table compares the sustainability of everything eatable in &#039;&#039;meals&#039;&#039;:&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;(&#039;&#039;&#039;1 meal&#039;&#039;&#039; satisfies &#039;&#039;&#039;100% of hunger&#039;&#039;&#039;. In this way, &#039;&#039;&#039;1 [[muffin]]&#039;&#039;&#039; for example satisfies &#039;&#039;&#039;200% of hunger&#039;&#039;&#039;, which sufficient for &#039;&#039;&#039;2 full meals&#039;&#039;&#039;.)&amp;lt;/small&amp;gt;&lt;br /&gt;
* per &#039;&#039;&#039;unit&#039;&#039;&#039; &amp;lt;small&amp;gt;(e.g. 1 [[Cereal Bar|cereal bar]], 1 [[tomato]] or 1ml of [[milk]].)&amp;lt;/small&amp;gt;&lt;br /&gt;
* per &#039;&#039;&#039;stack&#039;&#039;&#039; &amp;lt;small&amp;gt;(e.g. 20 [[mushroom|mushrooms]] or 5 raw [[corn]] grains.)&amp;lt;/small&amp;gt;&lt;br /&gt;
* per &#039;&#039;&#039;plant&#039;&#039;&#039; / &#039;&#039;&#039;grow cycle&#039;&#039;&#039; &amp;lt;small&amp;gt;(e.g. some [[soybean|soybeans]] or [[pumpkin|pumpkins]], which grow to &#039;&#039;several&#039;&#039; &amp;lt;small&amp;gt;(more than 1)&amp;lt;/small&amp;gt; on their plants.)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Ordered List of plantables and cookables == &amp;lt;!--T:6--&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;ritz grid-container&amp;quot; dir=&amp;quot;ltr&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;table class=&amp;quot;waffle&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s0&amp;quot; dir=&amp;quot;ltr&amp;quot; rowspan=&amp;quot;3&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Name&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s0&amp;quot; dir=&amp;quot;ltr&amp;quot; colspan=&amp;quot;15&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Efficiency&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s0&amp;quot; dir=&amp;quot;ltr&amp;quot; rowspan=&amp;quot;3&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Ingredients&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s0&amp;quot; dir=&amp;quot;ltr&amp;quot; rowspan=&amp;quot;3&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;grows / prepare in&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s1&amp;quot; dir=&amp;quot;ltr&amp;quot; colspan=&amp;quot;7&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #efefef;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;(short range)&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s2&amp;quot; dir=&amp;quot;ltr&amp;quot; colspan=&amp;quot;4&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #cccccc;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;(medium range)&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s3&amp;quot; dir=&amp;quot;ltr&amp;quot; colspan=&amp;quot;4&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #999999;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;(long range)&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s4&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Portion&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s5&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;font-style: italic;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;of&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s4&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Unit&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s6&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: none;background-color: #efefef;text-align: center;font-style: italic;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;do&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s7 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-left: none;background-color: #efefef;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 52px; left: -3px;&amp;quot;&amp;gt;Hunger&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s8&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;⇒&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s9&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Meals&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s10&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;font-style: italic;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;by&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s11&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Stacks&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s12&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;⇒&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s13&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Meals&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s14&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;font-style: italic;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;by&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s15&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Yield&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s16&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;⇒&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s15&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Meals&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Fern]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Flower]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Milk]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1ml&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 237px; left: -1px;&amp;quot;&amp;gt;100ml [[Soy Oil]], 50g [[Fenoxitone Powder]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Chemistry Station]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Soy Oil]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1ml&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1 [[Soybean]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s26 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: none;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 123px; left: -1px;&amp;quot;&amp;gt;[[Reagent Processor]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Soybean]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;10%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;10,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Wheat]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;10%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;10,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Tomato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;30%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,3&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;6,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;3&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;18,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Pumpkin Pie]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;17%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;5,9&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;5,9&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;5,9&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 237px; left: -1px;&amp;quot;&amp;gt;100g [[Flour]], 1 [[Egg]], 10ml [[Milk]], 1 [[Pumpkin]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Mushroom]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;4,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;8,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Potato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;4,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;3&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;12,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Muffin]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;50%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;50g [[Flour]], 1 [[Egg]], 10ml [[Milk]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Fries]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;63%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0.5ml [[Soy Oil]], 1 [[Potato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Pumpkin]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Rice]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;50&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 81px; left: -1px;&amp;quot;&amp;gt;[[Baked potato]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;80%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,8&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,8&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,8&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1 [[Potato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 81px; left: -1px;&amp;quot;&amp;gt;[[Tomato Soup]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;70%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,7&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,7&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,7&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1 [[Tomato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Cereal Bar]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;60%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;50g [[Flour]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s27&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Corn]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s28&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s8&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s28&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s8&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s28&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s8&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s29&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s12&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s30&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;5&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s12&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s31&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s16&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s32&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s16&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s32&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s27&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s27&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Food storage ==&lt;br /&gt;
Food decays at a rate determined by the environment it is stored in. The main factors are gas composition of surrounding atmosphere, temperature of the surrounding atmosphere, pressure of the atmosphere, and whether or not the item is in a fridge. Decay rate multipliers for a given gas are listed below:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Gas !! Decay Rate Multiplier&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Nitrogen|Nitrogen (N&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]] || 0.6&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Carbon Dioxide|Carbon Dioxide (CO&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]] || 0.8&lt;br /&gt;
|-&lt;br /&gt;
| Vacuum || 1&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Volatiles|Volatiles (H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]] || 1&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Oxygen|Oxygen (O&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]] || 1.5&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Nitrous Oxide|Nitrous Oxide (N&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;O)]] || 1.5&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Water|Water (H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;O)]] || 2&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Pollutant|Pollutants (X)]] || 3&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Also not all foods decay here is the list of foods unaffected by decay.&lt;br /&gt;
*[[Cereal Bar|Cereal Bars]]&lt;br /&gt;
*[[Corn Soup]]&lt;br /&gt;
*[[Pumpkin Soup]]&lt;br /&gt;
*[[Tomato Soup]]&lt;br /&gt;
The Soups being canned goods, and the cereal bar being a processed food hence why they do not decay.&lt;br /&gt;
&lt;br /&gt;
The decay rate also contains a factor determined by temperature, the pressure of the environment, as the food that needs to be preserved now has to be above 101 Kpa as preservation gets debuffed if its below 1 earth atmosphere. And the temperature decay factor is a complicated calculation summarized in the graph below ([https://www.reddit.com/r/Stationeers/comments/mrxwhp/decaying_food_gastemperature_data_math/guth0bt/ /u/LordRavenX, 04/2021]):&lt;br /&gt;
&lt;br /&gt;
[[File:FoodDecayFactorVsTempK.png|800px|Decay factor vs. temp Kelvin by [https://www.reddit.com/r/Stationeers/comments/mrxwhp/decaying_food_gastemperature_data_math/guth0bt/ /u/LordRavenX, 04/2021]]]&lt;br /&gt;
&lt;br /&gt;
Storage of food within a powered fridge also multiplies by a factor of 0.3, reducing decay by 70%.&lt;br /&gt;
&lt;br /&gt;
To minimize decay, food should be kept in a powered fridge in a nitrogen atmosphere of over 101kpa at a temperature of at least 110K (-163°C) as the calculation has been tweaked to not penalize preservation for being to cold.&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Guide_(Farming)&amp;diff=12550</id>
		<title>Guide (Farming)</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Guide_(Farming)&amp;diff=12550"/>
		<updated>2022-07-19T12:12:17Z</updated>

		<summary type="html">&lt;p&gt;Wark: Undo revision 12549 by Wark (talk) , incorrect values&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Food]]&lt;br /&gt;
== Info ==&lt;br /&gt;
=== Choose Farming Plot ===&lt;br /&gt;
As of version 0.2.2865.14293 (The Food For Thought Update), 4 farming plot items are available in normal gameplay, [[Portable Hydroponics]], [[Planter]], [[Hydroponic Tray]] and [[Hydroponic Station]]. [[Automated Hydroponics]] is labeled obsolete thus only accessible via creative mode.&lt;br /&gt;
* [[Portable Hydroponics]], early game item&lt;br /&gt;
**pros&lt;br /&gt;
***Early game item, normally provided in starter crate. &lt;br /&gt;
***No piping needed. Insert starter water canister can last a long time.&lt;br /&gt;
**cons&lt;br /&gt;
***Can not be automated.&lt;br /&gt;
***Portable item, clutters base floor.&lt;br /&gt;
***Requires external lighting (sun/ [[Grow Light]])&lt;br /&gt;
* [[Planter]], early game item&lt;br /&gt;
**pros&lt;br /&gt;
***Early game item, do not need alloy to build.&lt;br /&gt;
***No piping needed. Accepts water canister, water bottle, or dedicated water pipe.&lt;br /&gt;
***Can be automated.&lt;br /&gt;
**cons&lt;br /&gt;
***When not using liquid pipe, watering the plant can be labor-intensive. &lt;br /&gt;
***Has only one water port so it can not be chained, making the green house layout less compact.&lt;br /&gt;
***Requires external lighting (sun/ [[Grow Light]])&lt;br /&gt;
* [[Hydroponic Tray]], mid/end game item&lt;br /&gt;
**pros&lt;br /&gt;
***Do not need alloy to build.&lt;br /&gt;
***Can be automated.&lt;br /&gt;
***Extremely space-efficient, one plot per small grid.&lt;br /&gt;
**cons&lt;br /&gt;
***Requires piping network to feed water.&lt;br /&gt;
***Requires external lighting (sun/ [[Grow Light]])&lt;br /&gt;
*[[Hydroponic Station]], mid/end game item&lt;br /&gt;
**pros&lt;br /&gt;
***Built-in light source.&lt;br /&gt;
**cons&lt;br /&gt;
***Requires steel to build.&lt;br /&gt;
***Can not be automated.&lt;br /&gt;
***bulky, 4 plot for 3x4 small grid, not space-efficient.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Setup === &lt;br /&gt;
Farming plants can be done with [[Portable Hydroponics]], [[Planter]], [[Hydroponic Tray]] or [[Hydroponic Station]]. All of them use an open-top design so a controlled atmosphere (greenhouse) is required to operate this equipment.&lt;br /&gt;
* &#039;&#039;&#039;Using [[Portable Hydroponics]], [[Planter]], [[Hydroponic Tray]] or [[Hydroponic Station]]&#039;&#039;&#039;&lt;br /&gt;
# Build an airtight room with an airlock. Use [[Circuitboard_(Airlock)|simple airlock]] if the environment outside is a vacuum, or [[Circuitboard_(Advanced_Airlock)|advanced airlock]] if the outside world has pressure.&lt;br /&gt;
#* If you plan to rely on [[Grow Light]] or [[Hydroponic Station]], direct sunlight is not required so you can build the greenhouse anywhere using any material.&lt;br /&gt;
#* If you want to use sunlight as well, the greenhouse should be planned with maximum sun exposure in mind, and all walls/ceilings facing the sun trajectory are made of glass. &lt;br /&gt;
# Build an entire set of pressure/temperature/gasMixture control for the greenhouse, either manual system or automated (via [[Kit_(Logic_I/O)|logic chips]] or [[Integrated_Circuit_(IC10)|programable IC chip]]). Make sure the following conditions are met, or the plant will wither through a declining health bar:&lt;br /&gt;
#* 7.7KPa &amp;lt; Pressure &amp;lt; 190KPa. Glass panel collapses near 200KPa pressure difference.&lt;br /&gt;
#* 15&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt;C &amp;lt; Air Temperature &amp;lt; 50&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt;C.&lt;br /&gt;
#* Atmosphere and pipes being mostly free of [[pollutant]]s and [[volatiles]], maximum of 3mols for volatiles.&lt;br /&gt;
#* 40 kPa atmosphere of minimum 1% [[Carbon_Dioxide|carbon dioxide]]. &lt;br /&gt;
#* 5&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt;C &amp;lt; Water Temperature &amp;lt; 60&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt;C.&lt;br /&gt;
# Provide grow beds with water, or the plant will wither through a declining health bar. Insert a canister of water into the slot of [[Portable Hydroponics]]. Apply water bottle or water canister directly on [[Planter]]. Connect [[Hydroponic Tray]], [[Planter]] or [[Hydroponic Station]] to a liquid pipe network containing water.&lt;br /&gt;
# Seed the farming plot. Can be done with either seeds or raw fruits.&lt;br /&gt;
# Provide illumination to the plants. Activate the UV light on [[Hydroponic Station]], turn on your dedicated [[Grow Light]], or wait till the sun comes up. The plant won&#039;t die for lack of light exposure, merely stops growing. Low sunlight strength on Europa will produce a misleading warning saying &#039;no sunlight&#039;, but really it is just growing at a reduced rate.&lt;br /&gt;
# [[Fertilizer]] (obtained through [[Portable Composter]] or [[Advanced Composter]]) can be used to speed up growth or boost yield depending on how it is made. More detail to be added. &lt;br /&gt;
# There is a seed mature stage right before the fruit mature stage, so seed harvesting is time-sensitive. Point cursor at the plant at the right growth stage there will be a hint saying how many seeds are available for harvesting. If one waited too long there won&#039;t be any seed left, only fruits. You can however replant fruit as if it&#039;s a seed. Harvesting seeds does not affect fruit yield. &lt;br /&gt;
# Wait till the fruit matures(cursor hints current yield), and harvest. The current patch note says the decay timer begins when the fruit matures, even when it is still left on the tree. &lt;br /&gt;
# A healthy plant consumes water and [[Carbon_Dioxide|carbon dioxide]], then produces oxygen and radiates heat into the surrounding atmosphere. Constant manual intervention or another feedback loop into the environment control will be necessary to keep the greenhouse running in the long term.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Using [[Automated Hydroponics]]&#039;&#039;&#039;&lt;br /&gt;
# This item is obsolete. It&#039;s only accessible in creative mode. Check [[Automated Hydroponics|its own article]] for detail.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Fertilizer ===&lt;br /&gt;
The following data was collected on tomatoes in version 0.2.3420. Tomatoes have 5 growth stages, the first stage is fastest and only takes a few seconds. The total growth time is 4 x growth speed (per stage)&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Fertilizer !! Number of uses !! Tomato growth speed (per stage) !! Tomato yield (seeds and produce)&lt;br /&gt;
|-&lt;br /&gt;
| none || n/a || ~150 seconds || 2&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 3 biomass || 7 || ~100 seconds || 4&lt;br /&gt;
|-&lt;br /&gt;
| 3 food || 3 || ~90 seconds || 5&lt;br /&gt;
|-&lt;br /&gt;
| 3 decayed food || 3 || ~60 seconds || 4&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 1 biomass + 1 food + 1 decayed || 3 || ~80 seconds || 4&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 2 biomass + 1 food || 4 || ~85 seconds || 4&lt;br /&gt;
|-&lt;br /&gt;
| 2 biomass + 1 decayed || 4 || ~80 seconds || 4&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 2 food + 1 biomass || 4 || ~90 seconds || 5&lt;br /&gt;
|-&lt;br /&gt;
| 2 food + 1 decayed || 3 || ~90 seconds || 5&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Fastest way to create decayed food:&#039;&#039;&#039;&lt;br /&gt;
* Gas: X&lt;br /&gt;
* Pressure: &amp;lt;0.2 kPa&lt;br /&gt;
* Temperature: &amp;gt;200°C&lt;br /&gt;
* A [[Fridge (small)]] is perfect for this&lt;br /&gt;
* Cooked food decays faster than raw&lt;br /&gt;
* Gas at very low pressures can&#039;t be heated by a [[Pipe Heater]], heat the gas before reducing the pressure.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Efficiency of raw food and meals === &amp;lt;!--T:3--&amp;gt;&lt;br /&gt;
The following table compares the sustainability of everything eatable in &#039;&#039;meals&#039;&#039;:&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;(&#039;&#039;&#039;1 meal&#039;&#039;&#039; satisfies &#039;&#039;&#039;100% of hunger&#039;&#039;&#039;. In this way, &#039;&#039;&#039;1 [[muffin]]&#039;&#039;&#039; for example satisfies &#039;&#039;&#039;200% of hunger&#039;&#039;&#039;, which sufficient for &#039;&#039;&#039;2 full meals&#039;&#039;&#039;.)&amp;lt;/small&amp;gt;&lt;br /&gt;
* per &#039;&#039;&#039;unit&#039;&#039;&#039; &amp;lt;small&amp;gt;(e.g. 1 [[Cereal Bar|cereal bar]], 1 [[tomato]] or 1ml of [[milk]].)&amp;lt;/small&amp;gt;&lt;br /&gt;
* per &#039;&#039;&#039;stack&#039;&#039;&#039; &amp;lt;small&amp;gt;(e.g. 20 [[mushroom|mushrooms]] or 5 raw [[corn]] grains.)&amp;lt;/small&amp;gt;&lt;br /&gt;
* per &#039;&#039;&#039;plant&#039;&#039;&#039; / &#039;&#039;&#039;grow cycle&#039;&#039;&#039; &amp;lt;small&amp;gt;(e.g. some [[soybean|soybeans]] or [[pumpkin|pumpkins]], which grow to &#039;&#039;several&#039;&#039; &amp;lt;small&amp;gt;(more than 1)&amp;lt;/small&amp;gt; on their plants.)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Ordered List of plantables and cookables == &amp;lt;!--T:6--&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;ritz grid-container&amp;quot; dir=&amp;quot;ltr&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;table class=&amp;quot;waffle&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s0&amp;quot; dir=&amp;quot;ltr&amp;quot; rowspan=&amp;quot;3&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Name&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s0&amp;quot; dir=&amp;quot;ltr&amp;quot; colspan=&amp;quot;15&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Efficiency&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s0&amp;quot; dir=&amp;quot;ltr&amp;quot; rowspan=&amp;quot;3&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Ingredients&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s0&amp;quot; dir=&amp;quot;ltr&amp;quot; rowspan=&amp;quot;3&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;grows / prepare in&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s1&amp;quot; dir=&amp;quot;ltr&amp;quot; colspan=&amp;quot;7&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #efefef;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;(short range)&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s2&amp;quot; dir=&amp;quot;ltr&amp;quot; colspan=&amp;quot;4&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #cccccc;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;(medium range)&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s3&amp;quot; dir=&amp;quot;ltr&amp;quot; colspan=&amp;quot;4&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #999999;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;(long range)&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s4&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Portion&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s5&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;font-style: italic;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;of&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s4&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Unit&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s6&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: none;background-color: #efefef;text-align: center;font-style: italic;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;do&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s7 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-left: none;background-color: #efefef;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 52px; left: -3px;&amp;quot;&amp;gt;Hunger&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s8&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;⇒&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s9&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Meals&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s10&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;font-style: italic;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;by&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s11&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Stacks&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s12&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;⇒&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s13&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Meals&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s14&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;font-style: italic;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;by&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s15&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Yield&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s16&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;⇒&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s15&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Meals&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Fern]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Flower]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Milk]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1ml&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 237px; left: -1px;&amp;quot;&amp;gt;100ml [[Soy Oil]], 50g [[Fenoxitone Powder]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Chemistry Station]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Soy Oil]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1ml&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1 [[Soybean]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s26 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: none;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 123px; left: -1px;&amp;quot;&amp;gt;[[Reagent Processor]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Soybean]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;10%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;10,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Wheat]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;10%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;10,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Tomato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;30%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,3&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;6,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;3&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;18,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Pumpkin Pie]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;17%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;5,9&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;5,9&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;5,9&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 237px; left: -1px;&amp;quot;&amp;gt;100g [[Flour]], 1 [[Egg]], 10ml [[Milk]], 1 [[Pumpkin]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Mushroom]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;4,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;8,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Potato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;4,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;3&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;12,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Muffin]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;50%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;50g [[Flour]], 1 [[Egg]], 10ml [[Milk]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Fries]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;63%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0.5ml [[Soy Oil]], 1 [[Potato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Pumpkin]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Rice]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;50&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 81px; left: -1px;&amp;quot;&amp;gt;[[Baked potato]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;80%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,8&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,8&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,8&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1 [[Potato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 81px; left: -1px;&amp;quot;&amp;gt;[[Tomato Soup]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;70%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,7&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,7&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,7&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1 [[Tomato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Cereal Bar]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;60%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;50g [[Flour]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s27&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Corn]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s28&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s8&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s28&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s8&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s28&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s8&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s29&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s12&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s30&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;5&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s12&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s31&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s16&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s32&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s16&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s32&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s27&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s27&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Food storage ==&lt;br /&gt;
Food decays at a rate determined by the environment it is stored in. The main factors are gas composition of surrounding atmosphere, temperature of the surrounding atmosphere, pressure of the atmosphere, and whether or not the item is in a fridge. Decay rate multipliers for a given gas are listed below:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Gas !! Decay Rate Multiplier&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Nitrogen|Nitrogen (N&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]] || 0.6&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Carbon Dioxide|Carbon Dioxide (CO&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]] || 0.8&lt;br /&gt;
|-&lt;br /&gt;
| Vacuum || 1&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Volatiles|Volatiles (H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]] || 1&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Oxygen|Oxygen (O&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]] || 1.5&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Nitrous Oxide|Nitrous Oxide (N&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;O)]] || 1.5&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Water|Water (H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;O)]] || 2&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Pollutant|Pollutants (X)]] || 3&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Also not all foods decay here is the list of foods unaffected by decay.&lt;br /&gt;
*[[Cereal Bar|Cereal Bars]]&lt;br /&gt;
*[[Corn Soup]]&lt;br /&gt;
*[[Pumpkin Soup]]&lt;br /&gt;
*[[Tomato Soup]]&lt;br /&gt;
The Soups being canned goods, and the cereal bar being a processed food hence why they do not decay.&lt;br /&gt;
&lt;br /&gt;
The decay rate also contains a factor determined by temperature, the pressure of the environment, as the food that needs to be preserved now has to be above 101 Kpa as preservation gets debuffed if its below 1 earth atmosphere. And the temperature decay factor is a complicated calculation summarized in the graph below ([https://www.reddit.com/r/Stationeers/comments/mrxwhp/decaying_food_gastemperature_data_math/guth0bt/ /u/LordRavenX, 04/2021]):&lt;br /&gt;
&lt;br /&gt;
[[File:FoodDecayFactorVsTempK.png|800px|Decay factor vs. temp Kelvin by [https://www.reddit.com/r/Stationeers/comments/mrxwhp/decaying_food_gastemperature_data_math/guth0bt/ /u/LordRavenX, 04/2021]]]&lt;br /&gt;
&lt;br /&gt;
Storage of food within a powered fridge also multiplies by a factor of 0.3, reducing decay by 70%.&lt;br /&gt;
&lt;br /&gt;
To minimize decay, food should be kept in a powered fridge in a nitrogen atmosphere of over 101kpa at a temperature of at least 110K (-163°C) as the calculation has been tweaked to not penalize preservation for being to cold.&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Guide_(Farming)&amp;diff=12549</id>
		<title>Guide (Farming)</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Guide_(Farming)&amp;diff=12549"/>
		<updated>2022-07-19T11:46:21Z</updated>

		<summary type="html">&lt;p&gt;Wark: added a table for plants and their consumption and production of chemicals&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Food]]&lt;br /&gt;
== Info ==&lt;br /&gt;
=== Choose Farming Plot ===&lt;br /&gt;
As of version 0.2.2865.14293 (The Food For Thought Update), 4 farming plot items are available in normal gameplay, [[Portable Hydroponics]], [[Planter]], [[Hydroponic Tray]] and [[Hydroponic Station]]. [[Automated Hydroponics]] is labeled obsolete thus only accessible via creative mode.&lt;br /&gt;
* [[Portable Hydroponics]], early game item&lt;br /&gt;
**pros&lt;br /&gt;
***Early game item, normally provided in starter crate. &lt;br /&gt;
***No piping needed. Insert starter water canister can last a long time.&lt;br /&gt;
**cons&lt;br /&gt;
***Can not be automated.&lt;br /&gt;
***Portable item, clutters base floor.&lt;br /&gt;
***Requires external lighting (sun/ [[Grow Light]])&lt;br /&gt;
* [[Planter]], early game item&lt;br /&gt;
**pros&lt;br /&gt;
***Early game item, do not need alloy to build.&lt;br /&gt;
***No piping needed. Accepts water canister, water bottle, or dedicated water pipe.&lt;br /&gt;
***Can be automated.&lt;br /&gt;
**cons&lt;br /&gt;
***When not using liquid pipe, watering the plant can be labor-intensive. &lt;br /&gt;
***Has only one water port so it can not be chained, making the green house layout less compact.&lt;br /&gt;
***Requires external lighting (sun/ [[Grow Light]])&lt;br /&gt;
* [[Hydroponic Tray]], mid/end game item&lt;br /&gt;
**pros&lt;br /&gt;
***Do not need alloy to build.&lt;br /&gt;
***Can be automated.&lt;br /&gt;
***Extremely space-efficient, one plot per small grid.&lt;br /&gt;
**cons&lt;br /&gt;
***Requires piping network to feed water.&lt;br /&gt;
***Requires external lighting (sun/ [[Grow Light]])&lt;br /&gt;
*[[Hydroponic Station]], mid/end game item&lt;br /&gt;
**pros&lt;br /&gt;
***Built-in light source.&lt;br /&gt;
**cons&lt;br /&gt;
***Requires steel to build.&lt;br /&gt;
***Can not be automated.&lt;br /&gt;
***bulky, 4 plot for 3x4 small grid, not space-efficient.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Setup === &lt;br /&gt;
Farming plants can be done with [[Portable Hydroponics]], [[Planter]], [[Hydroponic Tray]] or [[Hydroponic Station]]. All of them use an open-top design so a controlled atmosphere (greenhouse) is required to operate this equipment.&lt;br /&gt;
* &#039;&#039;&#039;Using [[Portable Hydroponics]], [[Planter]], [[Hydroponic Tray]] or [[Hydroponic Station]]&#039;&#039;&#039;&lt;br /&gt;
# Build an airtight room with an airlock. Use [[Circuitboard_(Airlock)|simple airlock]] if the environment outside is a vacuum, or [[Circuitboard_(Advanced_Airlock)|advanced airlock]] if the outside world has pressure.&lt;br /&gt;
#* If you plan to rely on [[Grow Light]] or [[Hydroponic Station]], direct sunlight is not required so you can build the greenhouse anywhere using any material.&lt;br /&gt;
#* If you want to use sunlight as well, the greenhouse should be planned with maximum sun exposure in mind, and all walls/ceilings facing the sun trajectory are made of glass. &lt;br /&gt;
# Build an entire set of pressure/temperature/gasMixture control for the greenhouse, either manual system or automated (via [[Kit_(Logic_I/O)|logic chips]] or [[Integrated_Circuit_(IC10)|programable IC chip]]). Make sure the following conditions are met, or the plant will wither through a declining health bar:&lt;br /&gt;
#* 7.7KPa &amp;lt; Pressure &amp;lt; 190KPa. Glass panel collapses near 200KPa pressure difference.&lt;br /&gt;
#* 15&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt;C &amp;lt; Air Temperature &amp;lt; 50&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt;C.&lt;br /&gt;
#* Atmosphere and pipes being mostly free of [[pollutant]]s and [[volatiles]], maximum of 3mols for volatiles.&lt;br /&gt;
#* 40 kPa atmosphere of minimum 1% [[Carbon_Dioxide|carbon dioxide]]. &lt;br /&gt;
#* 5&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt;C &amp;lt; Water Temperature &amp;lt; 60&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt;C.&lt;br /&gt;
# Provide grow beds with water, or the plant will wither through a declining health bar. Insert a canister of water into the slot of [[Portable Hydroponics]]. Apply water bottle or water canister directly on [[Planter]]. Connect [[Hydroponic Tray]], [[Planter]] or [[Hydroponic Station]] to a liquid pipe network containing water.&lt;br /&gt;
# Seed the farming plot. Can be done with either seeds or raw fruits.&lt;br /&gt;
# Provide illumination to the plants. Activate the UV light on [[Hydroponic Station]], turn on your dedicated [[Grow Light]], or wait till the sun comes up. The plant won&#039;t die for lack of light exposure, merely stops growing. Low sunlight strength on Europa will produce a misleading warning saying &#039;no sunlight&#039;, but really it is just growing at a reduced rate.&lt;br /&gt;
# [[Fertilizer]] (obtained through [[Portable Composter]] or [[Advanced Composter]]) can be used to speed up growth or boost yield depending on how it is made. More detail to be added. &lt;br /&gt;
# There is a seed mature stage right before the fruit mature stage, so seed harvesting is time-sensitive. Point cursor at the plant at the right growth stage there will be a hint saying how many seeds are available for harvesting. If one waited too long there won&#039;t be any seed left, only fruits. You can however replant fruit as if it&#039;s a seed. Harvesting seeds does not affect fruit yield. &lt;br /&gt;
# Wait till the fruit matures(cursor hints current yield), and harvest. The current patch note says the decay timer begins when the fruit matures, even when it is still left on the tree. &lt;br /&gt;
# A healthy plant consumes water and [[Carbon_Dioxide|carbon dioxide]], then produces oxygen and radiates heat into the surrounding atmosphere. Constant manual intervention or another feedback loop into the environment control will be necessary to keep the greenhouse running in the long term.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Using [[Automated Hydroponics]]&#039;&#039;&#039;&lt;br /&gt;
# This item is obsolete. It&#039;s only accessible in creative mode. Check [[Automated Hydroponics|its own article]] for detail.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Fertilizer ===&lt;br /&gt;
The following data was collected on tomatoes in version 0.2.3420. Tomatoes have 5 growth stages, the first stage is fastest and only takes a few seconds. The total growth time is 4 x growth speed (per stage)&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Fertilizer !! Number of uses !! Tomato growth speed (per stage) !! Tomato yield (seeds and produce)&lt;br /&gt;
|-&lt;br /&gt;
| none || n/a || ~150 seconds || 2&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 3 biomass || 7 || ~100 seconds || 4&lt;br /&gt;
|-&lt;br /&gt;
| 3 food || 3 || ~90 seconds || 5&lt;br /&gt;
|-&lt;br /&gt;
| 3 decayed food || 3 || ~60 seconds || 4&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 1 biomass + 1 food + 1 decayed || 3 || ~80 seconds || 4&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 2 biomass + 1 food || 4 || ~85 seconds || 4&lt;br /&gt;
|-&lt;br /&gt;
| 2 biomass + 1 decayed || 4 || ~80 seconds || 4&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 2 food + 1 biomass || 4 || ~90 seconds || 5&lt;br /&gt;
|-&lt;br /&gt;
| 2 food + 1 decayed || 3 || ~90 seconds || 5&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Fastest way to create decayed food:&#039;&#039;&#039;&lt;br /&gt;
* Gas: X&lt;br /&gt;
* Pressure: &amp;lt;0.2 kPa&lt;br /&gt;
* Temperature: &amp;gt;200°C&lt;br /&gt;
* A [[Fridge (small)]] is perfect for this&lt;br /&gt;
* Cooked food decays faster than raw&lt;br /&gt;
* Gas at very low pressures can&#039;t be heated by a [[Pipe Heater]], heat the gas before reducing the pressure.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Plants, consumption and production of chemicals===&lt;br /&gt;
version 0.2.3456&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Plant !! Temperature (air) !! H2O (mol/tick)!! CarbonDioxide (mol/tick)!! Oxygen (mol/tick)!! Volatiles (mol/tick)!! Nitrogen (mol/tick)!! NitrousOxide (mol/tick)!! Pollutant (mol/tick)&lt;br /&gt;
|-&lt;br /&gt;
| Food crops + fern || 15-52°C || -0.00000596 || -0.00240 || +0.00120 || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Darga fern || 15-52°C || -0.00000596 || -0.00425 || +0.002125 || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Flowers, all colors || 15-52°C || -0.00000596 || -0.00060 || +0.00030 || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Tropical Lilly || 17-56°C || -0.00000596 || -0.00100 || +0.00050 || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Peace Lilly || 13-52°C || -0.00000596 || -0.00100 || +0.00050 || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Mushrooms&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; || 15-52°C || -0.00000596 || +0.0012 || -0.00240 || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Winterspawn, alpha || peaks at ~18°C || -0.00020000 || || +0.00004525&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; || +0.0000905&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; || -0.0015 || ||&lt;br /&gt;
|-&lt;br /&gt;
| Winterspawn, beta || peaks at ~20°C || -0.00040000 || || +0.0000702&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; || +0.0001404&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; || -0.0025 || ||&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Hades, alpha || ? || -0.00000596 || || -0.00375&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; || -0.00125&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; || || || +0.001&lt;br /&gt;
|-&lt;br /&gt;
| Hades, beta || ? || -? || || -?&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; || -?&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; || || || +?&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Alien mushroom || ? || -0.00000600 || || +0.00020 || || +0.00030 || -0.00120 ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* 1: only grows in darkness&lt;br /&gt;
* 2: variable that depends on temperature, plant must be mature&lt;br /&gt;
* 3: variable that depends on O2/H2 concentration&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Efficiency of raw food and meals === &amp;lt;!--T:3--&amp;gt;&lt;br /&gt;
The following table compares the sustainability of everything eatable in &#039;&#039;meals&#039;&#039;:&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;(&#039;&#039;&#039;1 meal&#039;&#039;&#039; satisfies &#039;&#039;&#039;100% of hunger&#039;&#039;&#039;. In this way, &#039;&#039;&#039;1 [[muffin]]&#039;&#039;&#039; for example satisfies &#039;&#039;&#039;200% of hunger&#039;&#039;&#039;, which sufficient for &#039;&#039;&#039;2 full meals&#039;&#039;&#039;.)&amp;lt;/small&amp;gt;&lt;br /&gt;
* per &#039;&#039;&#039;unit&#039;&#039;&#039; &amp;lt;small&amp;gt;(e.g. 1 [[Cereal Bar|cereal bar]], 1 [[tomato]] or 1ml of [[milk]].)&amp;lt;/small&amp;gt;&lt;br /&gt;
* per &#039;&#039;&#039;stack&#039;&#039;&#039; &amp;lt;small&amp;gt;(e.g. 20 [[mushroom|mushrooms]] or 5 raw [[corn]] grains.)&amp;lt;/small&amp;gt;&lt;br /&gt;
* per &#039;&#039;&#039;plant&#039;&#039;&#039; / &#039;&#039;&#039;grow cycle&#039;&#039;&#039; &amp;lt;small&amp;gt;(e.g. some [[soybean|soybeans]] or [[pumpkin|pumpkins]], which grow to &#039;&#039;several&#039;&#039; &amp;lt;small&amp;gt;(more than 1)&amp;lt;/small&amp;gt; on their plants.)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Ordered List of plantables and cookables == &amp;lt;!--T:6--&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;ritz grid-container&amp;quot; dir=&amp;quot;ltr&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;table class=&amp;quot;waffle&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s0&amp;quot; dir=&amp;quot;ltr&amp;quot; rowspan=&amp;quot;3&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Name&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s0&amp;quot; dir=&amp;quot;ltr&amp;quot; colspan=&amp;quot;15&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Efficiency&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s0&amp;quot; dir=&amp;quot;ltr&amp;quot; rowspan=&amp;quot;3&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Ingredients&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s0&amp;quot; dir=&amp;quot;ltr&amp;quot; rowspan=&amp;quot;3&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;grows / prepare in&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s1&amp;quot; dir=&amp;quot;ltr&amp;quot; colspan=&amp;quot;7&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #efefef;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;(short range)&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s2&amp;quot; dir=&amp;quot;ltr&amp;quot; colspan=&amp;quot;4&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #cccccc;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;(medium range)&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s3&amp;quot; dir=&amp;quot;ltr&amp;quot; colspan=&amp;quot;4&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #999999;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;(long range)&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s4&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Portion&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s5&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;font-style: italic;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;of&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s4&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Unit&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s6&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: none;background-color: #efefef;text-align: center;font-style: italic;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;do&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s7 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-left: none;background-color: #efefef;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 52px; left: -3px;&amp;quot;&amp;gt;Hunger&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s8&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;⇒&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s9&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Meals&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s10&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;font-style: italic;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;by&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s11&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Stacks&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s12&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;⇒&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s13&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Meals&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s14&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;font-style: italic;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;by&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s15&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Yield&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s16&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;⇒&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s15&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Meals&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Fern]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Flower]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Milk]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1ml&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 237px; left: -1px;&amp;quot;&amp;gt;100ml [[Soy Oil]], 50g [[Fenoxitone Powder]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Chemistry Station]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Soy Oil]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1ml&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1 [[Soybean]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s26 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: none;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 123px; left: -1px;&amp;quot;&amp;gt;[[Reagent Processor]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Soybean]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;10%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;10,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Wheat]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;10%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;10,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Tomato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;30%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,3&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;6,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;3&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;18,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Pumpkin Pie]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;17%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;5,9&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;5,9&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;5,9&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 237px; left: -1px;&amp;quot;&amp;gt;100g [[Flour]], 1 [[Egg]], 10ml [[Milk]], 1 [[Pumpkin]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Mushroom]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;4,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;8,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Potato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;4,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;3&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;12,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Muffin]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;50%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;50g [[Flour]], 1 [[Egg]], 10ml [[Milk]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Fries]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;63%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0.5ml [[Soy Oil]], 1 [[Potato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Pumpkin]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Rice]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;50&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 81px; left: -1px;&amp;quot;&amp;gt;[[Baked potato]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;80%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,8&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,8&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,8&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1 [[Potato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 81px; left: -1px;&amp;quot;&amp;gt;[[Tomato Soup]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;70%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,7&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,7&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,7&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1 [[Tomato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Cereal Bar]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;60%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;50g [[Flour]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s27&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Corn]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s28&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s8&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s28&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s8&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s28&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s8&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s29&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s12&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s30&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;5&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s12&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s31&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s16&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s32&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s16&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s32&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s27&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s27&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Food storage ==&lt;br /&gt;
Food decays at a rate determined by the environment it is stored in. The main factors are gas composition of surrounding atmosphere, temperature of the surrounding atmosphere, pressure of the atmosphere, and whether or not the item is in a fridge. Decay rate multipliers for a given gas are listed below:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Gas !! Decay Rate Multiplier&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Nitrogen|Nitrogen (N&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]] || 0.6&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Carbon Dioxide|Carbon Dioxide (CO&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]] || 0.8&lt;br /&gt;
|-&lt;br /&gt;
| Vacuum || 1&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Volatiles|Volatiles (H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]] || 1&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Oxygen|Oxygen (O&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]] || 1.5&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Nitrous Oxide|Nitrous Oxide (N&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;O)]] || 1.5&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Water|Water (H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;O)]] || 2&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Pollutant|Pollutants (X)]] || 3&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Also not all foods decay here is the list of foods unaffected by decay.&lt;br /&gt;
*[[Cereal Bar|Cereal Bars]]&lt;br /&gt;
*[[Corn Soup]]&lt;br /&gt;
*[[Pumpkin Soup]]&lt;br /&gt;
*[[Tomato Soup]]&lt;br /&gt;
The Soups being canned goods, and the cereal bar being a processed food hence why they do not decay.&lt;br /&gt;
&lt;br /&gt;
The decay rate also contains a factor determined by temperature, the pressure of the environment, as the food that needs to be preserved now has to be above 101 Kpa as preservation gets debuffed if its below 1 earth atmosphere. And the temperature decay factor is a complicated calculation summarized in the graph below ([https://www.reddit.com/r/Stationeers/comments/mrxwhp/decaying_food_gastemperature_data_math/guth0bt/ /u/LordRavenX, 04/2021]):&lt;br /&gt;
&lt;br /&gt;
[[File:FoodDecayFactorVsTempK.png|800px|Decay factor vs. temp Kelvin by [https://www.reddit.com/r/Stationeers/comments/mrxwhp/decaying_food_gastemperature_data_math/guth0bt/ /u/LordRavenX, 04/2021]]]&lt;br /&gt;
&lt;br /&gt;
Storage of food within a powered fridge also multiplies by a factor of 0.3, reducing decay by 70%.&lt;br /&gt;
&lt;br /&gt;
To minimize decay, food should be kept in a powered fridge in a nitrogen atmosphere of over 101kpa at a temperature of at least 110K (-163°C) as the calculation has been tweaked to not penalize preservation for being to cold.&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Guide_(Farming)&amp;diff=12525</id>
		<title>Guide (Farming)</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Guide_(Farming)&amp;diff=12525"/>
		<updated>2022-07-14T13:17:28Z</updated>

		<summary type="html">&lt;p&gt;Wark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Food]]&lt;br /&gt;
== Info ==&lt;br /&gt;
=== Choose Farming Plot ===&lt;br /&gt;
As of version 0.2.2865.14293 (The Food For Thought Update), 4 farming plot items are available in normal gameplay, [[Portable Hydroponics]], [[Planter]], [[Hydroponic Tray]] and [[Hydroponic Station]]. [[Automated Hydroponics]] is labeled obsolete thus only accessible via creative mode.&lt;br /&gt;
* [[Portable Hydroponics]], early game item&lt;br /&gt;
**pros&lt;br /&gt;
***Early game item, normally provided in starter crate. &lt;br /&gt;
***No piping needed. Insert starter water canister can last a long time.&lt;br /&gt;
**cons&lt;br /&gt;
***Can not be automated.&lt;br /&gt;
***Portable item, clutters base floor.&lt;br /&gt;
***Requires external lighting (sun/ [[Grow Light]])&lt;br /&gt;
* [[Planter]], early game item&lt;br /&gt;
**pros&lt;br /&gt;
***Early game item, do not need alloy to build.&lt;br /&gt;
***No piping needed. Accepts water canister, water bottle, or dedicated water pipe.&lt;br /&gt;
***Can be automated.&lt;br /&gt;
**cons&lt;br /&gt;
***When not using liquid pipe, watering the plant can be labor-intensive. &lt;br /&gt;
***Has only one water port so it can not be chained, making the green house layout less compact.&lt;br /&gt;
***Requires external lighting (sun/ [[Grow Light]])&lt;br /&gt;
* [[Hydroponic Tray]], mid/end game item&lt;br /&gt;
**pros&lt;br /&gt;
***Do not need alloy to build.&lt;br /&gt;
***Can be automated.&lt;br /&gt;
***Extremely space-efficient, one plot per small grid.&lt;br /&gt;
**cons&lt;br /&gt;
***Requires piping network to feed water.&lt;br /&gt;
***Requires external lighting (sun/ [[Grow Light]])&lt;br /&gt;
*[[Hydroponic Station]], mid/end game item&lt;br /&gt;
**pros&lt;br /&gt;
***Built-in light source.&lt;br /&gt;
**cons&lt;br /&gt;
***Requires steel to build.&lt;br /&gt;
***Can not be automated.&lt;br /&gt;
***bulky, 4 plot for 3x4 small grid, not space-efficient.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Setup === &lt;br /&gt;
Farming plants can be done with [[Portable Hydroponics]], [[Planter]], [[Hydroponic Tray]] or [[Hydroponic Station]]. All of them use an open-top design so a controlled atmosphere (greenhouse) is required to operate this equipment.&lt;br /&gt;
* &#039;&#039;&#039;Using [[Portable Hydroponics]], [[Planter]], [[Hydroponic Tray]] or [[Hydroponic Station]]&#039;&#039;&#039;&lt;br /&gt;
# Build an airtight room with an airlock. Use [[Circuitboard_(Airlock)|simple airlock]] if the environment outside is a vacuum, or [[Circuitboard_(Advanced_Airlock)|advanced airlock]] if the outside world has pressure.&lt;br /&gt;
#* If you plan to rely on [[Grow Light]] or [[Hydroponic Station]], direct sunlight is not required so you can build the greenhouse anywhere using any material.&lt;br /&gt;
#* If you want to use sunlight as well, the greenhouse should be planned with maximum sun exposure in mind, and all walls/ceilings facing the sun trajectory are made of glass. &lt;br /&gt;
# Build an entire set of pressure/temperature/gasMixture control for the greenhouse, either manual system or automated (via [[Kit_(Logic_I/O)|logic chips]] or [[Integrated_Circuit_(IC10)|programable IC chip]]). Make sure the following conditions are met, or the plant will wither through a declining health bar:&lt;br /&gt;
#* 7.7KPa &amp;lt; Pressure &amp;lt; 190KPa. Glass panel collapses near 200KPa pressure difference.&lt;br /&gt;
#* 15&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt;C &amp;lt; Air Temperature &amp;lt; 50&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt;C.&lt;br /&gt;
#* Atmosphere and pipes being mostly free of [[pollutant]]s and [[volatiles]], maximum of 3mols for volatiles.&lt;br /&gt;
#* 40 kPa atmosphere of minimum 1% [[Carbon_Dioxide|carbon dioxide]]. &lt;br /&gt;
#* 5&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt;C &amp;lt; Water Temperature &amp;lt; 60&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt;C.&lt;br /&gt;
# Provide grow beds with water, or the plant will wither through a declining health bar. Insert a canister of water into the slot of [[Portable Hydroponics]]. Apply water bottle or water canister directly on [[Planter]]. Connect [[Hydroponic Tray]], [[Planter]] or [[Hydroponic Station]] to a liquid pipe network containing water.&lt;br /&gt;
# Seed the farming plot. Can be done with either seeds or raw fruits.&lt;br /&gt;
# Provide illumination to the plants. Activate the UV light on [[Hydroponic Station]], turn on your dedicated [[Grow Light]], or wait till the sun comes up. The plant won&#039;t die for lack of light exposure, merely stops growing. Low sunlight strength on Europa will produce a misleading warning saying &#039;no sunlight&#039;, but really it is just growing at a reduced rate.&lt;br /&gt;
# [[Fertilizer]] (obtained through [[Portable Composter]] or [[Advanced Composter]]) can be used to speed up growth or boost yield depending on how it is made. More detail to be added. &lt;br /&gt;
# There is a seed mature stage right before the fruit mature stage, so seed harvesting is time-sensitive. Point cursor at the plant at the right growth stage there will be a hint saying how many seeds are available for harvesting. If one waited too long there won&#039;t be any seed left, only fruits. You can however replant fruit as if it&#039;s a seed. Harvesting seeds does not affect fruit yield. &lt;br /&gt;
# Wait till the fruit matures(cursor hints current yield), and harvest. The current patch note says the decay timer begins when the fruit matures, even when it is still left on the tree. &lt;br /&gt;
# A healthy plant consumes water and [[Carbon_Dioxide|carbon dioxide]], then produces oxygen and radiates heat into the surrounding atmosphere. Constant manual intervention or another feedback loop into the environment control will be necessary to keep the greenhouse running in the long term.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Using [[Automated Hydroponics]]&#039;&#039;&#039;&lt;br /&gt;
# This item is obsolete. It&#039;s only accessible in creative mode. Check [[Automated Hydroponics|its own article]] for detail.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Fertilizer ===&lt;br /&gt;
The following data was collected on tomatoes in version 0.2.3420. Tomatoes have 5 growth stages, the first stage is fastest and only takes a few seconds. The total growth time is 4 x growth speed (per stage)&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Fertilizer !! Number of uses !! Tomato growth speed (per stage) !! Tomato yield (seeds and produce)&lt;br /&gt;
|-&lt;br /&gt;
| none || n/a || ~150 seconds || 2&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 3 biomass || 7 || ~100 seconds || 4&lt;br /&gt;
|-&lt;br /&gt;
| 3 food || 3 || ~90 seconds || 5&lt;br /&gt;
|-&lt;br /&gt;
| 3 decayed food || 3 || ~60 seconds || 4&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 1 biomass + 1 food + 1 decayed || 3 || ~80 seconds || 4&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 2 biomass + 1 food || 4 || ~85 seconds || 4&lt;br /&gt;
|-&lt;br /&gt;
| 2 biomass + 1 decayed || 4 || ~80 seconds || 4&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 2 food + 1 biomass || 4 || ~90 seconds || 5&lt;br /&gt;
|-&lt;br /&gt;
| 2 food + 1 decayed || 3 || ~90 seconds || 5&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Fastest way to create decayed food:&#039;&#039;&#039;&lt;br /&gt;
* Gas: X&lt;br /&gt;
* Pressure: &amp;lt;0.2 kPa&lt;br /&gt;
* Temperature: &amp;gt;200°C&lt;br /&gt;
* A [[Fridge (small)]] is perfect for this&lt;br /&gt;
* Cooked food decays faster than raw&lt;br /&gt;
* Gas at very low pressures can&#039;t be heated by a [[Pipe Heater]], heat the gas before reducing the pressure.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Efficiency of raw food and meals === &amp;lt;!--T:3--&amp;gt;&lt;br /&gt;
The following table compares the sustainability of everything eatable in &#039;&#039;meals&#039;&#039;:&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;(&#039;&#039;&#039;1 meal&#039;&#039;&#039; satisfies &#039;&#039;&#039;100% of hunger&#039;&#039;&#039;. In this way, &#039;&#039;&#039;1 [[muffin]]&#039;&#039;&#039; for example satisfies &#039;&#039;&#039;200% of hunger&#039;&#039;&#039;, which sufficient for &#039;&#039;&#039;2 full meals&#039;&#039;&#039;.)&amp;lt;/small&amp;gt;&lt;br /&gt;
* per &#039;&#039;&#039;unit&#039;&#039;&#039; &amp;lt;small&amp;gt;(e.g. 1 [[Cereal Bar|cereal bar]], 1 [[tomato]] or 1ml of [[milk]].)&amp;lt;/small&amp;gt;&lt;br /&gt;
* per &#039;&#039;&#039;stack&#039;&#039;&#039; &amp;lt;small&amp;gt;(e.g. 20 [[mushroom|mushrooms]] or 5 raw [[corn]] grains.)&amp;lt;/small&amp;gt;&lt;br /&gt;
* per &#039;&#039;&#039;plant&#039;&#039;&#039; / &#039;&#039;&#039;grow cycle&#039;&#039;&#039; &amp;lt;small&amp;gt;(e.g. some [[soybean|soybeans]] or [[pumpkin|pumpkins]], which grow to &#039;&#039;several&#039;&#039; &amp;lt;small&amp;gt;(more than 1)&amp;lt;/small&amp;gt; on their plants.)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Ordered List of plantables and cookables == &amp;lt;!--T:6--&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;ritz grid-container&amp;quot; dir=&amp;quot;ltr&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;table class=&amp;quot;waffle&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s0&amp;quot; dir=&amp;quot;ltr&amp;quot; rowspan=&amp;quot;3&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Name&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s0&amp;quot; dir=&amp;quot;ltr&amp;quot; colspan=&amp;quot;15&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Efficiency&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s0&amp;quot; dir=&amp;quot;ltr&amp;quot; rowspan=&amp;quot;3&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Ingredients&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s0&amp;quot; dir=&amp;quot;ltr&amp;quot; rowspan=&amp;quot;3&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;grows / prepare in&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s1&amp;quot; dir=&amp;quot;ltr&amp;quot; colspan=&amp;quot;7&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #efefef;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;(short range)&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s2&amp;quot; dir=&amp;quot;ltr&amp;quot; colspan=&amp;quot;4&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #cccccc;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;(medium range)&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s3&amp;quot; dir=&amp;quot;ltr&amp;quot; colspan=&amp;quot;4&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #999999;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;(long range)&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s4&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Portion&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s5&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;font-style: italic;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;of&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s4&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Unit&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s6&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: none;background-color: #efefef;text-align: center;font-style: italic;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;do&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s7 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-left: none;background-color: #efefef;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 52px; left: -3px;&amp;quot;&amp;gt;Hunger&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s8&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;⇒&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s9&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Meals&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s10&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;font-style: italic;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;by&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s11&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Stacks&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s12&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;⇒&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s13&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Meals&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s14&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;font-style: italic;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;by&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s15&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Yield&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s16&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;⇒&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s15&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Meals&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Fern]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Flower]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Milk]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1ml&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 237px; left: -1px;&amp;quot;&amp;gt;100ml [[Soy Oil]], 50g [[Fenoxitone Powder]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Chemistry Station]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Soy Oil]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1ml&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1 [[Soybean]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s26 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: none;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 123px; left: -1px;&amp;quot;&amp;gt;[[Reagent Processor]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Soybean]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;10%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;10,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Wheat]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;10%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;10,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Tomato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;30%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,3&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;6,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;3&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;18,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Pumpkin Pie]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;17%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;5,9&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;5,9&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;5,9&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 237px; left: -1px;&amp;quot;&amp;gt;100g [[Flour]], 1 [[Egg]], 10ml [[Milk]], 1 [[Pumpkin]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Mushroom]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;4,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;8,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Potato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;4,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;3&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;12,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Muffin]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;50%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;50g [[Flour]], 1 [[Egg]], 10ml [[Milk]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Fries]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;63%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0.5ml [[Soy Oil]], 1 [[Potato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Pumpkin]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Rice]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;50&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 81px; left: -1px;&amp;quot;&amp;gt;[[Baked potato]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;80%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,8&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,8&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,8&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1 [[Potato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 81px; left: -1px;&amp;quot;&amp;gt;[[Tomato Soup]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;70%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,7&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,7&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,7&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1 [[Tomato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Cereal Bar]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;60%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;50g [[Flour]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s27&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Corn]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s28&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s8&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s28&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s8&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s28&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s8&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s29&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s12&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s30&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;5&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s12&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s31&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s16&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s32&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s16&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s32&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s27&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s27&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Food storage ==&lt;br /&gt;
Food decays at a rate determined by the environment it is stored in. The main factors are gas composition of surrounding atmosphere, temperature of the surrounding atmosphere, pressure of the atmosphere, and whether or not the item is in a fridge. Decay rate multipliers for a given gas are listed below:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Gas !! Decay Rate Multiplier&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Nitrogen|Nitrogen (N&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]] || 0.6&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Carbon Dioxide|Carbon Dioxide (CO&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]] || 0.8&lt;br /&gt;
|-&lt;br /&gt;
| Vacuum || 1&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Volatiles|Volatiles (H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]] || 1&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Oxygen|Oxygen (O&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]] || 1.5&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Nitrous Oxide|Nitrous Oxide (N&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;O)]] || 1.5&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Water|Water (H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;O)]] || 2&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Pollutant|Pollutants (X)]] || 3&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Also not all foods decay here is the list of foods unaffected by decay.&lt;br /&gt;
*[[Cereal Bar|Cereal Bars]]&lt;br /&gt;
*[[Corn Soup]]&lt;br /&gt;
*[[Pumpkin Soup]]&lt;br /&gt;
*[[Tomato Soup]]&lt;br /&gt;
The Soups being canned goods, and the cereal bar being a processed food hence why they do not decay.&lt;br /&gt;
&lt;br /&gt;
The decay rate also contains a factor determined by temperature, the pressure of the environment, as the food that needs to be preserved now has to be above 101 Kpa as preservation gets debuffed if its below 1 earth atmosphere. And the temperature decay factor is a complicated calculation summarized in the graph below ([https://www.reddit.com/r/Stationeers/comments/mrxwhp/decaying_food_gastemperature_data_math/guth0bt/ /u/LordRavenX, 04/2021]):&lt;br /&gt;
&lt;br /&gt;
[[File:FoodDecayFactorVsTempK.png|800px|Decay factor vs. temp Kelvin by [https://www.reddit.com/r/Stationeers/comments/mrxwhp/decaying_food_gastemperature_data_math/guth0bt/ /u/LordRavenX, 04/2021]]]&lt;br /&gt;
&lt;br /&gt;
Storage of food within a powered fridge also multiplies by a factor of 0.3, reducing decay by 70%.&lt;br /&gt;
&lt;br /&gt;
To minimize decay, food should be kept in a powered fridge in a nitrogen atmosphere of over 101kpa at a temperature of at least 110K (-163°C) as the calculation has been tweaked to not penalize preservation for being to cold.&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Guide_(Farming)&amp;diff=12524</id>
		<title>Guide (Farming)</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Guide_(Farming)&amp;diff=12524"/>
		<updated>2022-07-14T12:53:27Z</updated>

		<summary type="html">&lt;p&gt;Wark: Added a &amp;quot;fertilizer&amp;quot; section with in-game growth values measured on tomatoes only, and a description on how to decay food as fast as possible&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Food]]&lt;br /&gt;
== Info ==&lt;br /&gt;
=== Choose Farming Plot ===&lt;br /&gt;
As of version 0.2.2865.14293 (The Food For Thought Update), 4 farming plot items are available in normal gameplay, [[Portable Hydroponics]], [[Planter]], [[Hydroponic Tray]] and [[Hydroponic Station]]. [[Automated Hydroponics]] is labeled obsolete thus only accessible via creative mode.&lt;br /&gt;
* [[Portable Hydroponics]], early game item&lt;br /&gt;
**pros&lt;br /&gt;
***Early game item, normally provided in starter crate. &lt;br /&gt;
***No piping needed. Insert starter water canister can last a long time.&lt;br /&gt;
**cons&lt;br /&gt;
***Can not be automated.&lt;br /&gt;
***Portable item, clutters base floor.&lt;br /&gt;
***Requires external lighting (sun/ [[Grow Light]])&lt;br /&gt;
* [[Planter]], early game item&lt;br /&gt;
**pros&lt;br /&gt;
***Early game item, do not need alloy to build.&lt;br /&gt;
***No piping needed. Accepts water canister, water bottle, or dedicated water pipe.&lt;br /&gt;
***Can be automated.&lt;br /&gt;
**cons&lt;br /&gt;
***When not using liquid pipe, watering the plant can be labor-intensive. &lt;br /&gt;
***Has only one water port so it can not be chained, making the green house layout less compact.&lt;br /&gt;
***Requires external lighting (sun/ [[Grow Light]])&lt;br /&gt;
* [[Hydroponic Tray]], mid/end game item&lt;br /&gt;
**pros&lt;br /&gt;
***Do not need alloy to build.&lt;br /&gt;
***Can be automated.&lt;br /&gt;
***Extremely space-efficient, one plot per small grid.&lt;br /&gt;
**cons&lt;br /&gt;
***Requires piping network to feed water.&lt;br /&gt;
***Requires external lighting (sun/ [[Grow Light]])&lt;br /&gt;
*[[Hydroponic Station]], mid/end game item&lt;br /&gt;
**pros&lt;br /&gt;
***Built-in light source.&lt;br /&gt;
**cons&lt;br /&gt;
***Requires steel to build.&lt;br /&gt;
***Can not be automated.&lt;br /&gt;
***bulky, 4 plot for 3x4 small grid, not space-efficient.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Setup === &lt;br /&gt;
Farming plants can be done with [[Portable Hydroponics]], [[Planter]], [[Hydroponic Tray]] or [[Hydroponic Station]]. All of them use an open-top design so a controlled atmosphere (greenhouse) is required to operate this equipment.&lt;br /&gt;
* &#039;&#039;&#039;Using [[Portable Hydroponics]], [[Planter]], [[Hydroponic Tray]] or [[Hydroponic Station]]&#039;&#039;&#039;&lt;br /&gt;
# Build an airtight room with an airlock. Use [[Circuitboard_(Airlock)|simple airlock]] if the environment outside is a vacuum, or [[Circuitboard_(Advanced_Airlock)|advanced airlock]] if the outside world has pressure.&lt;br /&gt;
#* If you plan to rely on [[Grow Light]] or [[Hydroponic Station]], direct sunlight is not required so you can build the greenhouse anywhere using any material.&lt;br /&gt;
#* If you want to use sunlight as well, the greenhouse should be planned with maximum sun exposure in mind, and all walls/ceilings facing the sun trajectory are made of glass. &lt;br /&gt;
# Build an entire set of pressure/temperature/gasMixture control for the greenhouse, either manual system or automated (via [[Kit_(Logic_I/O)|logic chips]] or [[Integrated_Circuit_(IC10)|programable IC chip]]). Make sure the following conditions are met, or the plant will wither through a declining health bar:&lt;br /&gt;
#* 7.7KPa &amp;lt; Pressure &amp;lt; 190KPa. Glass panel collapses near 200KPa pressure difference.&lt;br /&gt;
#* 15&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt;C &amp;lt; Air Temperature &amp;lt; 50&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt;C.&lt;br /&gt;
#* Atmosphere and pipes being mostly free of [[pollutant]]s and [[volatiles]], maximum of 3mols for volatiles.&lt;br /&gt;
#* 40 kPa atmosphere of minimum 1% [[Carbon_Dioxide|carbon dioxide]]. &lt;br /&gt;
#* 5&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt;C &amp;lt; Water Temperature &amp;lt; 60&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt;C.&lt;br /&gt;
# Provide grow beds with water, or the plant will wither through a declining health bar. Insert a canister of water into the slot of [[Portable Hydroponics]]. Apply water bottle or water canister directly on [[Planter]]. Connect [[Hydroponic Tray]], [[Planter]] or [[Hydroponic Station]] to a liquid pipe network containing water.&lt;br /&gt;
# Seed the farming plot. Can be done with either seeds or raw fruits.&lt;br /&gt;
# Provide illumination to the plants. Activate the UV light on [[Hydroponic Station]], turn on your dedicated [[Grow Light]], or wait till the sun comes up. The plant won&#039;t die for lack of light exposure, merely stops growing. Low sunlight strength on Europa will produce a misleading warning saying &#039;no sunlight&#039;, but really it is just growing at a reduced rate.&lt;br /&gt;
# [[Fertilizer]] (obtained through [[Portable Composter]] or [[Advanced Composter]]) can be used to speed up growth or boost yield depending on how it is made. More detail to be added. &lt;br /&gt;
# There is a seed mature stage right before the fruit mature stage, so seed harvesting is time-sensitive. Point cursor at the plant at the right growth stage there will be a hint saying how many seeds are available for harvesting. If one waited too long there won&#039;t be any seed left, only fruits. You can however replant fruit as if it&#039;s a seed. Harvesting seeds does not affect fruit yield. &lt;br /&gt;
# Wait till the fruit matures(cursor hints current yield), and harvest. The current patch note says the decay timer begins when the fruit matures, even when it is still left on the tree. &lt;br /&gt;
# A healthy plant consumes water and [[Carbon_Dioxide|carbon dioxide]], then produces oxygen and radiates heat into the surrounding atmosphere. Constant manual intervention or another feedback loop into the environment control will be necessary to keep the greenhouse running in the long term.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Using [[Automated Hydroponics]]&#039;&#039;&#039;&lt;br /&gt;
# This item is obsolete. It&#039;s only accessible in creative mode. Check [[Automated Hydroponics|its own article]] for detail.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Fertilizer ===&lt;br /&gt;
The following data was collected on tomatoes in version 0.2.3420. Tomatoes have 5 growth stages, the first stage is fastest and only takes a few seconds. The total growth time is 4 x growth speed (per stage)&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Fertilizer !! Number of uses !! Tomato growth speed (per stage) !! Tomato yield (seeds and produce)&lt;br /&gt;
|-&lt;br /&gt;
| none || n/a || ~150 seconds || 2&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 3 biomass || 7 || ~100 seconds || 4&lt;br /&gt;
|-&lt;br /&gt;
| 3 food || 3 || ~90 seconds || 5&lt;br /&gt;
|-&lt;br /&gt;
| 3 decayed food || 3 || ~60 seconds || 4&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 1 biomass + 1 food + 1 decayed || 3 || ~80 seconds || 4&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 2 biomass + 1 food || 4 || ~85 seconds || 4&lt;br /&gt;
|-&lt;br /&gt;
| 2 biomass + 1 decayed || 4 || ~80 seconds || 4&lt;br /&gt;
|-&lt;br /&gt;
| || || ||&lt;br /&gt;
|-&lt;br /&gt;
| 2 food + 1 biomass || 4 || ~90 seconds || 5&lt;br /&gt;
|-&lt;br /&gt;
| 2 food + 1 decayed || 3 || ~90 seconds || 5&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Fastest way to create decayed food:&#039;&#039;&#039;&lt;br /&gt;
* Gas: X&lt;br /&gt;
* Pressure: &amp;lt;0.2 kPa&lt;br /&gt;
* Temperature: &amp;gt;200°C&lt;br /&gt;
* A [[Fridge (small)]] is perfect for this&lt;br /&gt;
* Gas at very low pressures can&#039;t be heated by a [[Pipe Heater]], so heat the gas before reducing the pressure.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Efficiency of raw food and meals === &amp;lt;!--T:3--&amp;gt;&lt;br /&gt;
The following table compares the sustainability of everything eatable in &#039;&#039;meals&#039;&#039;:&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;(&#039;&#039;&#039;1 meal&#039;&#039;&#039; satisfies &#039;&#039;&#039;100% of hunger&#039;&#039;&#039;. In this way, &#039;&#039;&#039;1 [[muffin]]&#039;&#039;&#039; for example satisfies &#039;&#039;&#039;200% of hunger&#039;&#039;&#039;, which sufficient for &#039;&#039;&#039;2 full meals&#039;&#039;&#039;.)&amp;lt;/small&amp;gt;&lt;br /&gt;
* per &#039;&#039;&#039;unit&#039;&#039;&#039; &amp;lt;small&amp;gt;(e.g. 1 [[Cereal Bar|cereal bar]], 1 [[tomato]] or 1ml of [[milk]].)&amp;lt;/small&amp;gt;&lt;br /&gt;
* per &#039;&#039;&#039;stack&#039;&#039;&#039; &amp;lt;small&amp;gt;(e.g. 20 [[mushroom|mushrooms]] or 5 raw [[corn]] grains.)&amp;lt;/small&amp;gt;&lt;br /&gt;
* per &#039;&#039;&#039;plant&#039;&#039;&#039; / &#039;&#039;&#039;grow cycle&#039;&#039;&#039; &amp;lt;small&amp;gt;(e.g. some [[soybean|soybeans]] or [[pumpkin|pumpkins]], which grow to &#039;&#039;several&#039;&#039; &amp;lt;small&amp;gt;(more than 1)&amp;lt;/small&amp;gt; on their plants.)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Ordered List of plantables and cookables == &amp;lt;!--T:6--&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;ritz grid-container&amp;quot; dir=&amp;quot;ltr&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;table class=&amp;quot;waffle&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s0&amp;quot; dir=&amp;quot;ltr&amp;quot; rowspan=&amp;quot;3&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Name&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s0&amp;quot; dir=&amp;quot;ltr&amp;quot; colspan=&amp;quot;15&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Efficiency&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s0&amp;quot; dir=&amp;quot;ltr&amp;quot; rowspan=&amp;quot;3&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Ingredients&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s0&amp;quot; dir=&amp;quot;ltr&amp;quot; rowspan=&amp;quot;3&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;grows / prepare in&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s1&amp;quot; dir=&amp;quot;ltr&amp;quot; colspan=&amp;quot;7&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #efefef;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;(short range)&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s2&amp;quot; dir=&amp;quot;ltr&amp;quot; colspan=&amp;quot;4&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #cccccc;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;(medium range)&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s3&amp;quot; dir=&amp;quot;ltr&amp;quot; colspan=&amp;quot;4&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #999999;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;(long range)&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s4&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Portion&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s5&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;font-style: italic;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;of&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s4&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Unit&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s6&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: none;background-color: #efefef;text-align: center;font-style: italic;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;do&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s7 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-left: none;background-color: #efefef;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 52px; left: -3px;&amp;quot;&amp;gt;Hunger&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s8&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;⇒&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s9&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Meals&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s10&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;font-style: italic;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;by&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s11&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Stacks&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s12&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;⇒&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s13&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Meals&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s14&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;font-style: italic;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;by&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s15&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Yield&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s16&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;⇒&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s15&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;font-weight: bold;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;Meals&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Fern]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Flower]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Milk]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1ml&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 237px; left: -1px;&amp;quot;&amp;gt;100ml [[Soy Oil]], 50g [[Fenoxitone Powder]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Chemistry Station]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Soy Oil]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1ml&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1 [[Soybean]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s26 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: none;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 123px; left: -1px;&amp;quot;&amp;gt;[[Reagent Processor]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Soybean]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;10%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;10,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Wheat]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;10%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;10,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Tomato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;30%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,3&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;6,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;3&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;18,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Pumpkin Pie]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;17%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;5,9&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;5,9&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;5,9&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 237px; left: -1px;&amp;quot;&amp;gt;100g [[Flour]], 1 [[Egg]], 10ml [[Milk]], 1 [[Pumpkin]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Mushroom]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;4,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;8,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Potato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;20&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;4,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;3&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;12,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Muffin]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;50%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;50g [[Flour]], 1 [[Egg]], 10ml [[Milk]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Fries]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;63%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0.5ml [[Soy Oil]], 1 [[Potato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Pumpkin]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Rice]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;50&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 81px; left: -1px;&amp;quot;&amp;gt;[[Baked potato]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;80%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,8&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,8&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,8&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1 [[Potato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17 softmerge&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;softmerge-inner&amp;quot; style=&amp;quot;width: 81px; left: -1px;&amp;quot;&amp;gt;[[Tomato Soup]]&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;70%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,7&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,7&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,7&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1 [[Tomato]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Cereal Bar]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s18&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;60%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s19&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s20&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s22&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s21&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s23&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s24&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s25&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,6&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;50g [[Flour]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s17&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Microwave]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
		&amp;lt;tr style=&amp;quot;height:20px;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s27&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Corn]]&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s28&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;100%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s8&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s28&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s8&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s28&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2%&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s8&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #efefef;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s29&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #d9d9d9;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,0&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s12&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s30&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;5&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s12&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #cccccc;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s31&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #b7b7b7;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,1&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s16&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s32&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s16&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: center;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;→&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s32&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;background-color: #999999;text-align: right;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;0,2&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s27&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
			&amp;lt;td class=&amp;quot;s27&amp;quot; dir=&amp;quot;ltr&amp;quot; style=&amp;quot;border-bottom: 1px SOLID #000000;border-right: 1px SOLID #000000;background-color: #ffffff;text-align: left;color: #000000;font-family: &#039;Arial&#039;;font-size: 10pt;vertical-align: middle;white-space: nowrap;direction: ltr;padding: 2px 3px 2px 3px;&amp;quot;&amp;gt;[[Hydroponics]]&amp;lt;/td&amp;gt;&lt;br /&gt;
		&amp;lt;/tr&amp;gt;&lt;br /&gt;
	&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Food storage ==&lt;br /&gt;
Food decays at a rate determined by the environment it is stored in. The main factors are gas composition of surrounding atmosphere, temperature of the surrounding atmosphere, pressure of the atmosphere, and whether or not the item is in a fridge. Decay rate multipliers for a given gas are listed below:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Gas !! Decay Rate Multiplier&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Nitrogen|Nitrogen (N&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]] || 0.6&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Carbon Dioxide|Carbon Dioxide (CO&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]] || 0.8&lt;br /&gt;
|-&lt;br /&gt;
| Vacuum || 1&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Volatiles|Volatiles (H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]] || 1&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Oxygen|Oxygen (O&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;)]] || 1.5&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Nitrous Oxide|Nitrous Oxide (N&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;O)]] || 1.5&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Water|Water (H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;O)]] || 2&lt;br /&gt;
|-&lt;br /&gt;
| [[Special:MyLanguage/Pollutant|Pollutants (X)]] || 3&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Also not all foods decay here is the list of foods unaffected by decay.&lt;br /&gt;
*[[Cereal Bar|Cereal Bars]]&lt;br /&gt;
*[[Corn Soup]]&lt;br /&gt;
*[[Pumpkin Soup]]&lt;br /&gt;
*[[Tomato Soup]]&lt;br /&gt;
The Soups being canned goods, and the cereal bar being a processed food hence why they do not decay.&lt;br /&gt;
&lt;br /&gt;
The decay rate also contains a factor determined by temperature, the pressure of the environment, as the food that needs to be preserved now has to be above 101 Kpa as preservation gets debuffed if its below 1 earth atmosphere. And the temperature decay factor is a complicated calculation summarized in the graph below ([https://www.reddit.com/r/Stationeers/comments/mrxwhp/decaying_food_gastemperature_data_math/guth0bt/ /u/LordRavenX, 04/2021]):&lt;br /&gt;
&lt;br /&gt;
[[File:FoodDecayFactorVsTempK.png|800px|Decay factor vs. temp Kelvin by [https://www.reddit.com/r/Stationeers/comments/mrxwhp/decaying_food_gastemperature_data_math/guth0bt/ /u/LordRavenX, 04/2021]]]&lt;br /&gt;
&lt;br /&gt;
Storage of food within a powered fridge also multiplies by a factor of 0.3, reducing decay by 70%.&lt;br /&gt;
&lt;br /&gt;
To minimize decay, food should be kept in a powered fridge in a nitrogen atmosphere of over 101kpa at a temperature of at least 110K (-163°C) as the calculation has been tweaked to not penalize preservation for being to cold.&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=IC10&amp;diff=11365</id>
		<title>IC10</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=IC10&amp;diff=11365"/>
		<updated>2021-12-09T13:50:36Z</updated>

		<summary type="html">&lt;p&gt;Wark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:MIPS Programming]]&lt;br /&gt;
=MIPS scripting language for IC10 housings / chips=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Text after a # will be ignored to the end of the line. The amount of white&lt;br /&gt;
# space between arguments isn&#039;t important, but new lines start a new command.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Registers==&lt;br /&gt;
The IC contains 16 registers, numbered r0-r15. Think of these as variables in other programming languages. In fact, you can name them with the alias command (see below).&lt;br /&gt;
&lt;br /&gt;
To set a register directly (such as r0=2), use the &amp;lt;b&amp;gt;move&amp;lt;/b&amp;gt; command. To read a value from a device, use l (load). To write a value back to a device, use s (set). Note that&lt;br /&gt;
like most machine languages, the &amp;lt;i&amp;gt;destination&amp;lt;/i&amp;gt; goes first, so instructions always look like: action destination source.&lt;br /&gt;
&lt;br /&gt;
There are two more registers. One called ra (return address) and one called sp (stack pointer). The ra is used by certain jump and branching instructions (those ending with -al) to remember which line in the script it should return to. The sp tracks the next index within the stack (a memory that can store up to 512 values) to be pushed (written) to or popped (read) from. Neither ra or sp is protected, their values can be changed by instructions like any other register.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 10&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Sets r0 to the value 10&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 r1&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Copies the value of r1 to r0&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r0 d0 Temperature&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Reads the Temperature parameter from device 0 and places the value in r0 (not all devices have a Temperature parameter, check the in-game stationpedia)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s d0 On r0&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Writes the value from register 0 out to On parameter of device 0 (if r0 equals 0 the device will turn off, if r0 equals 1 it will turn on)&lt;br /&gt;
&lt;br /&gt;
==Device Ports==&lt;br /&gt;
ICs can interact with up to 6 other devices via d0 - d5, as well as the device it&#039;s attached to via db. To change or set a device, use a screwdriver and adjust the device in the IC housing. You can read or set any of the device&#039;s properties, so it is possible to do things like read the pressure and oxygen content of a room on the same Device port. &lt;br /&gt;
&lt;br /&gt;
The l (load) and s (set) instructions let you read and set values on a device.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r0 d0 Temperature&amp;lt;/code&amp;gt; #Reads the temperature from an atmosphere sensor into r0.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s d1 Setting r0 &amp;lt;/code&amp;gt; # Writes r0 to the device on port 1 to the Setting variable.&lt;br /&gt;
&lt;br /&gt;
==Labels==&lt;br /&gt;
Lables are used to make it easier to jump between lines in the script. The label will have a numerical value that is the same as its line number. Even though it&#039;s possible to use a labels value for calculations, doing so is a bad idea since any changes to the code can change the line numbers of the labels.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;main:&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;j main&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Constants==&lt;br /&gt;
Instead of using a register to store a fixed value, a constant can be made. Using this name will refer to the assigned value.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;define pi 3.14159&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move r0 pi&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Indirect referencing==&lt;br /&gt;
This is a way of accessing a register by using another register as a pointer. Adding an additional r infront of the register turns on this behaviour. The value stored in the register being used as the pointer must be between 0 to 15, this will then point to a register from r0 to r15, higher or lower values will cause an error.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 5&amp;lt;/code&amp;gt; stores the value 5 in r0&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move rr0 10&amp;lt;/code&amp;gt; is now the same as &amp;lt;code&amp;gt;move r5 10&amp;lt;/code&amp;gt; since r0 has the value 5, rr0 points at the register r5&lt;br /&gt;
&lt;br /&gt;
Additional r&#039;s can be added to do indirect referencing multiple times in a row.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move r1 2&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move r2 3&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move rrr1 4&amp;lt;/code&amp;gt; is now the same as &amp;lt;code&amp;gt;move r3 4&amp;lt;/code&amp;gt; since r1 points at r2 which points at r3&lt;br /&gt;
&lt;br /&gt;
This also works with devices&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move r0 2&amp;lt;/code&amp;gt; stores the value 2 in r0&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;s dr0 On 1&amp;lt;/code&amp;gt; is now the same as &amp;lt;code&amp;gt;s d2 On 1&amp;lt;/code&amp;gt;, r0 has the value 2 so dr0 points at d2&lt;br /&gt;
&lt;br /&gt;
==Debugging advice==&lt;br /&gt;
The value stored in a register can easily be seen by writing it to the Setting parameter of the IC housing, this has no sideeffects, too see the value just stand close and look directly at the housing (&amp;lt;code&amp;gt;s db Setting r0&amp;lt;/code&amp;gt;).&lt;br /&gt;
&amp;lt;br&amp;gt;To check if a certain block of code is executed, use the above trick but with a number that you choose, like the line number (&amp;lt;code&amp;gt;s db Setting 137&amp;lt;/code&amp;gt;).&lt;br /&gt;
&amp;lt;br&amp;gt;The configuration card can be used to manually check the data values stored in all connected devices.&lt;br /&gt;
&lt;br /&gt;
==Learning MIPS==&lt;br /&gt;
MIPS can be difficult to get started with. So here is a list of instructions that are useful for beginners. These can be used to write many different scripts.&lt;br /&gt;
&lt;br /&gt;
General:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
alias (make the script easier to read by assigning a name to a register or device, example: alias rTemperature r15)&lt;br /&gt;
label: (where &amp;quot;label&amp;quot; can be replaced with almost any word, jump and branch instructions will go to these, example: start:)&lt;br /&gt;
yield (pause for 1-tick and then resume, if not used the script will automatically pause for 1-tick after 128 lines)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Jumps:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
j label&lt;br /&gt;
jal label (stores the next line number into the &amp;quot;return address&amp;quot;-register and then jump to label)&lt;br /&gt;
j ra (jump to the &amp;quot;return address&amp;quot;)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Branching (jump-if):&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
beq (branch if equal)&lt;br /&gt;
bne (branch if not-equal)&lt;br /&gt;
bgt (branch if greater than)&lt;br /&gt;
blt (branch if less than)&lt;br /&gt;
The suffix -al can be added to each of these (example: beqal) to save the next line number into the &amp;quot;return address&amp;quot; register&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Device interactions:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
l (load)&lt;br /&gt;
lb (load batch, requires one of the following: Average / Sum / Minimum / Maximum)&lt;br /&gt;
ls (load slot)&lt;br /&gt;
s (store)&lt;br /&gt;
sb (store batch)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Logic and Math:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
seqz (common NOT-gate: turns 0 into 1, and all other values into 0)&lt;br /&gt;
move&lt;br /&gt;
add (addition)&lt;br /&gt;
sub (subtraction)&lt;br /&gt;
mul (multiplication)&lt;br /&gt;
div (division)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Common device variables:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
On (1 is on, 0 is off)&lt;br /&gt;
Open (1 is open, 0 is closed)&lt;br /&gt;
Setting (meaning varies between devices, example: a LED display(console) will show this value)&lt;br /&gt;
Activate (1 usually means running, example: a Daylight sensor is 1 when the sun shines on it)&lt;br /&gt;
Temperature (in Kelvin, Celsius + 273.15)&lt;br /&gt;
Pressure (in kPa)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Notes:&lt;br /&gt;
&amp;lt;br&amp;gt;-All instructions and variables can be seen in-game in the MIPS editor window by clicking the &amp;quot;f&amp;quot;, &amp;quot;x&amp;quot; and &amp;quot;s(x)&amp;quot; buttons on the top right.&lt;br /&gt;
&amp;lt;br&amp;gt;-The stationpedia is the best source to see which variables are available to each device.&lt;br /&gt;
&amp;lt;br&amp;gt;-Most scripts are loops, they end with a jump instruction that leads back up to the start. Otherwise they will just run once and then stop.&lt;br /&gt;
&lt;br /&gt;
Two practice scripts:&lt;br /&gt;
&amp;lt;br&amp;gt;Automatic Night Light: Load &amp;quot;Activate&amp;quot; from a Daylight sensor, flip the value with a NOT-gate, store the value to the &amp;quot;On&amp;quot; variable of one or more lights.&lt;br /&gt;
&amp;lt;br&amp;gt;Automatic Wall Cooler: Read &amp;quot;Temperature&amp;quot; from a Gas Sensor. Branch if the value is greater than X, turn on the cooler. Branch if the value is less than Y, turn off the cooler. (Wall coolers need a minumum of 12.5 kPa pressure in the connected pipe)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Instructions=&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;alias&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;alias&lt;br /&gt;
:alias str r? d? # labels register or device reference with name.  When alias is applied to a device, it will affect what shows on the screws in the IC base.  (housing)&lt;br /&gt;
&amp;lt;code&amp;gt;alias vTemperature r0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;alias dAutoHydro1 d0&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;move&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;move    &lt;br /&gt;
:d s     # stores the value of s in d&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 42 # Store 42 in register 0&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;l&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;load&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;l (load)&lt;br /&gt;
:l r# d# parameter&lt;br /&gt;
Reads from a device (d#) and stores the value in a register (r#)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r0 d0 Setting&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Read from the device on d0 into register 0&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r1 d5 Pressure&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Read the pressure from a sensor&lt;br /&gt;
&lt;br /&gt;
This also works with aliases. For example:&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
alias Sensor d0 &amp;lt;br/&amp;gt;&lt;br /&gt;
l r0 Sensor Temperature&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;ls&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;load slot&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ls (load slot)&lt;br /&gt;
:ls r# d# slotNum parameter&lt;br /&gt;
Reads from a slot (slotNum) of a device (d#)  and stores the value in a register (r#)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;ls r0 d0 2 Occupied&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Read from the second slot of device on d0, stores 1 in r0 if it&#039;s occupied, 0 otherwise.&lt;br /&gt;
&lt;br /&gt;
And here is the code to read the charge of an AIMeE:&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
alias robot d0 &amp;lt;br/&amp;gt;&lt;br /&gt;
alias charge r0 &amp;lt;br/&amp;gt;&lt;br /&gt;
ls charge robot 0 Charge &lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;s&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;set&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;s (set)&lt;br /&gt;
:s d# parameter r#&lt;br /&gt;
Writes a setting to a device. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s d0 Setting r0&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;add&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;add     &lt;br /&gt;
:d s t   # calculates s + t and stores the result in d&lt;br /&gt;
&amp;lt;code&amp;gt;add r0 r1 1 # add 1 to r1 and store the result as r0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;add r0 r0 1 # increment r0 by one&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;sub&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;sub     &lt;br /&gt;
:d s t   # calculates s - t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;mul&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;mul     &lt;br /&gt;
:d s t   # calculates s * t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;div&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;div     &lt;br /&gt;
:d s t   # calculates s / t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;mod&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;mod     &lt;br /&gt;
:d s t   &lt;br /&gt;
::# calculates s mod t and stores the result in d. Note this&lt;br /&gt;
::# doesn&#039;t behave like the % operator - the result will be &lt;br /&gt;
::# positive even if the either of the operands are negative&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;slt&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;slt     &lt;br /&gt;
:d s t   # stores 1 in d if s &amp;lt; t, 0 otherwise&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;sqrt&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;sqrt    &lt;br /&gt;
:d s     # calculates sqrt(s) and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;round&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;round   &lt;br /&gt;
:d s     # finds the rounded value of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;trunc&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;trunc   &lt;br /&gt;
:d s     # finds the truncated value of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;ceil&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ceil   &lt;br /&gt;
: d s     # calculates the ceiling of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;floor&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;floor  &lt;br /&gt;
: d s     # calculates the floor of s and stores the result in d&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;max&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;max    &lt;br /&gt;
: d s t   # calculates the maximum of s and t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;min&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;min    &lt;br /&gt;
: d s t   # calculates the minimum of s and t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;abs&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;abs    &lt;br /&gt;
: d s     # calculates the absolute value of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;log&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;log    &lt;br /&gt;
: d s     # calculates the natural logarithm of s and stores the result&lt;br /&gt;
::# in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;exp&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;exp    &lt;br /&gt;
: d s     # calculates the exponential of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;rand&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;rand   &lt;br /&gt;
: d       # selects a random number uniformly at random between 0 and 1&lt;br /&gt;
::# inclusive and stores the result in d&lt;br /&gt;
&lt;br /&gt;
::# boolean arithmetic uses the C convention that 0 is false and any non-zero&lt;br /&gt;
::# value is true.&lt;br /&gt;
&amp;lt;div id=&amp;quot;and&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;and    &lt;br /&gt;
: d s t   # stores 1 in d if both s and t have non-zero values,&lt;br /&gt;
::# 0 otherwise&lt;br /&gt;
&amp;lt;div id=&amp;quot;or&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;or     &lt;br /&gt;
: d s t   # stores 1 in d if either s or t have non-zero values,&lt;br /&gt;
::# 0 otherwise&lt;br /&gt;
&amp;lt;div id=&amp;quot;xor&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;xor    &lt;br /&gt;
: d s t   # stores 1 in d if exactly one of s and t are non-zero,&lt;br /&gt;
::# 0 otherwise&lt;br /&gt;
&amp;lt;div id=&amp;quot;nor&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;nor &lt;br /&gt;
:    d s t   # stores 1 in d if both s and t equal zero, 0 otherwise&lt;br /&gt;
::# Lines are numbered starting at zero&lt;br /&gt;
&amp;lt;div id=&amp;quot;j&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;j&lt;br /&gt;
:             a # jumps to line a.&lt;br /&gt;
&amp;lt;div id=&amp;quot;bltz&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bltz&lt;br /&gt;
:      s   a # jumps to line a if s &amp;lt;  0&lt;br /&gt;
&amp;lt;div id=&amp;quot;blez&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;blez &lt;br /&gt;
:     s   a # jumps to line a if s &amp;lt;= 0&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;bgez&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bgez &lt;br /&gt;
:     s   a # jumps to line a if s &amp;gt;= 0&lt;br /&gt;
&amp;lt;div id=&amp;quot;bgtz&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bgtz&lt;br /&gt;
:      s   a # jumps to line a if s &amp;gt;  0&lt;br /&gt;
&amp;lt;div id=&amp;quot;beq&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;beq &lt;br /&gt;
:      s t a # jumps to line a if s == t&lt;br /&gt;
&amp;lt;div id=&amp;quot;bne&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bne &lt;br /&gt;
:      s t a # jumps to line a if s != t&lt;br /&gt;
&amp;lt;div id=&amp;quot;bdseal&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bdseal&lt;br /&gt;
:    d? a(r?|num) # Jump execution to line a and store current line number if device d? is set.&lt;br /&gt;
&amp;lt;code&amp;gt;bdseal d0 32 #Store line number and jump to line 32 if d0 is assigned.&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;BR&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;bdseal dThisVictim HarvestCrop #Store line in ra and jump to sub HarvestCrop if device dThisVictim is assigned.&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;yield&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;yield           &lt;br /&gt;
: 	# ceases code execution for this power tick&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;lb&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;lb&lt;br /&gt;
:      r? typeHash var batchMode # Loads var from all output network devices with provided typeHash  using provided batchMode: Average(0), Sum (1), Minimum (2), Maximum (3). Can be used word or number. Result store into r?&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;sb&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;sb&lt;br /&gt;
:      typeHash var r? # Store register r? to var on all output network devices with provided typeHash&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
; #&lt;br /&gt;
:     # The following text will be ignored during compiling; use this to create comments.&lt;br /&gt;
&lt;br /&gt;
[https://www.cs.tufts.edu/comp/140/lectures/Day_3/mips_summary.pdf Other examples]&lt;br /&gt;
&lt;br /&gt;
== Conditional functions cheatsheet ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! suffix !! description !! branch to line !! branch and store return address !! relative jump to line !! set register&lt;br /&gt;
|-&lt;br /&gt;
| prefix: ||  || b- || b-al || br- || s-&lt;br /&gt;
|-&lt;br /&gt;
|  || unconditional || j    || jal    || jr    || &lt;br /&gt;
|-&lt;br /&gt;
| -eq  || if a == b || beq  || beqal  || breq  || seq&lt;br /&gt;
|-&lt;br /&gt;
| -eqz || if a == 0 || beqz || beqzal || breqz || seqz&lt;br /&gt;
|-&lt;br /&gt;
| -ge  || if a &amp;gt;= b || bge  || bgeal  || brge  || sge&lt;br /&gt;
|-&lt;br /&gt;
| -gez || if a &amp;gt;= 0 || bgez || bgezal || brgez || sgez&lt;br /&gt;
|-&lt;br /&gt;
| -gt  || if a &amp;gt; b  || bgt  || bgtal  || brgt  || sgt&lt;br /&gt;
|-&lt;br /&gt;
| -gtz || if a &amp;gt; 0  || bgtz || bgtzal || brgtz || sgtz&lt;br /&gt;
|-&lt;br /&gt;
| -le  || if a &amp;lt;= b || ble  || bleal  || brle  || sle&lt;br /&gt;
|-&lt;br /&gt;
| -lez || if a &amp;lt;= 0 || blez || blezal || brlez || slez&lt;br /&gt;
|-&lt;br /&gt;
| -lt  || if a &amp;lt; b  || blt  || bltal  || brlt  || slt&lt;br /&gt;
|-&lt;br /&gt;
| -ltz || if a &amp;lt; 0  || bltz || bltzal || brltz || sltz&lt;br /&gt;
|-&lt;br /&gt;
| -ne  || if a != b || bne  || bneal  || brne  || sne&lt;br /&gt;
|-&lt;br /&gt;
| -nez || if a != 0 || bnez || bnezal || brnez || snez&lt;br /&gt;
|-&lt;br /&gt;
| -dns || if device d is not set          || bdns || bdnsal || brdns || sdns&lt;br /&gt;
|-&lt;br /&gt;
| -dse || if device d is set              || bdse || bdseal || brdse || sdse&lt;br /&gt;
|-&lt;br /&gt;
| -ap  || if a approximately equals b     || bap  || bapal  || brap  || sap&lt;br /&gt;
|-&lt;br /&gt;
| -apz || if a approximately equals 0     || bapz || bapzal || brapz || sapz&lt;br /&gt;
|-&lt;br /&gt;
| -na  || if a not approximately equals b || bna  || bnaal  || brna  || sna&lt;br /&gt;
|-&lt;br /&gt;
| -naz || if a not approximately equals 0 || bnaz || bnazal || brnaz || snaz&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
All &amp;lt;code&amp;gt;b-&amp;lt;/code&amp;gt; commands require target line as last argument, all &amp;lt;code&amp;gt;s-&amp;lt;/code&amp;gt; commands require register to store result as first argument. All &amp;lt;code&amp;gt;br-&amp;lt;/code&amp;gt; commands require number to jump relatively as last argument. e.g. &amp;lt;code&amp;gt;breq a b 3&amp;lt;/code&amp;gt; means if a=b then jump to 3 lines after.&lt;br /&gt;
&lt;br /&gt;
All approximate functions require additional argument denoting how close two numbers need to be considered equal. E.g.: &amp;lt;code&amp;gt;sap r0 100 101 0.01&amp;lt;/code&amp;gt; will consider 100 and 101 almost equal (not more than 1%=0.01 different) and will set r0 to 1. The exact formula is &amp;lt;code&amp;gt;if abs(a - b) &amp;lt;= max(c * max(abs(a), abs(b)), float.epsilon * 8)&amp;lt;/code&amp;gt; for &amp;lt;code&amp;gt;-ap&amp;lt;/code&amp;gt; and is similar for other approximate functions.&lt;br /&gt;
&lt;br /&gt;
==Device Variables==&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Activate&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Activate&lt;br /&gt;
:1 if device is activated (usually means running), otherwise 0&lt;br /&gt;
:&amp;lt;code&amp;gt;l r0 d0 Activate # sets r0 to 1 if on or 0 if off&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;AirRelease&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;AirRelease&lt;br /&gt;
&amp;lt;div id=&amp;quot;Charge&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Charge&lt;br /&gt;
:    The current charge the device has.&lt;br /&gt;
&amp;lt;div id=&amp;quot;CLearMemory&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;CLearMemory&lt;br /&gt;
:    When set to 1, clears the counter memory (e.g. ExportCount).  Will set itself back to 0 when triggered.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Color&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Color&lt;br /&gt;
:    0 (or lower) = Blue&lt;br /&gt;
:    1 = Grey&lt;br /&gt;
:    2 = Green&lt;br /&gt;
:    3 = Orange&lt;br /&gt;
:    4 = Red&lt;br /&gt;
:    5 = Yellow&lt;br /&gt;
:    6 = White&lt;br /&gt;
:    7 = Black&lt;br /&gt;
:    8 = Brown&lt;br /&gt;
:    9 = Khaki&lt;br /&gt;
:    10 = Pink&lt;br /&gt;
:    11 (or higher) = Purple&lt;br /&gt;
&amp;lt;div id=&amp;quot;CompletionRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;CompletionRatio&lt;br /&gt;
&amp;lt;div id=&amp;quot;ElevatorLevel&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ElevatorLevel&lt;br /&gt;
&amp;lt;div id=&amp;quot;ElevatorSpeed&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ElevatorSpeed&lt;br /&gt;
&amp;lt;div id=&amp;quot;Error&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Error&lt;br /&gt;
:	1 if device is in error state, otherwise 0&lt;br /&gt;
&amp;lt;div id=&amp;quot;ExportCount&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ExportCount&lt;br /&gt;
:    How many items exporfted since last ClearMemory.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Filtration&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Filtration&lt;br /&gt;
:	The current state of the filtration system.  For example filtration = 1 for a Hardsuit when filtration is On.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Harvest&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Harvest&lt;br /&gt;
:	Performs the harvesting action for any plant based machinery.&lt;br /&gt;
:  &amp;lt;code&amp;gt;s d0 Harvest 1 # Performs 1 harvest action on device d0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;Horizontal&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Horizontal&lt;br /&gt;
&amp;lt;div id=&amp;quot;HorizontalRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;HorizontalRatio&lt;br /&gt;
&amp;lt;div id=&amp;quot;Idle&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Idle&lt;br /&gt;
&amp;lt;div id=&amp;quot;ImportCount&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ImportCount&lt;br /&gt;
&amp;lt;div id=&amp;quot;Lock&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Lock&lt;br /&gt;
&amp;lt;div id=&amp;quot;Maximum&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Maximum&lt;br /&gt;
&amp;lt;div id=&amp;quot;Mode&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Mode&lt;br /&gt;
&amp;lt;div id=&amp;quot;On&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;On&lt;br /&gt;
&amp;lt;div id=&amp;quot;Open&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Open&lt;br /&gt;
&amp;lt;div id=&amp;quot;Output&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Output&lt;br /&gt;
&amp;lt;div id=&amp;quot;Plant&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Plant&lt;br /&gt;
:    Performs the planting operation for any plant based machinery.&lt;br /&gt;
:  &amp;lt;code&amp;gt;s d0 Plant 1 # Plants one crop in device d0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;PositionX&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PositionX&lt;br /&gt;
&amp;lt;div id=&amp;quot;PositionY&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PositionY&lt;br /&gt;
&amp;lt;div id=&amp;quot;PositionZ&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PositionZ&lt;br /&gt;
&amp;lt;div id=&amp;quot;Power&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Power&lt;br /&gt;
&amp;lt;div id=&amp;quot;PowerActual&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PowerActual&lt;br /&gt;
&amp;lt;div id=&amp;quot;PowerPotential&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PowerPotential&lt;br /&gt;
&amp;lt;div id=&amp;quot;PowerRequired&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PowerRequired&lt;br /&gt;
&amp;lt;div id=&amp;quot;Pressure&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Pressure&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureExternal&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureExternal&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureInteral&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureInteral&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureSetting&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureSetting&lt;br /&gt;
&amp;lt;div id=&amp;quot;Quantity&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Quantity&lt;br /&gt;
:	Total quantity in the device.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Ratio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Ratio&lt;br /&gt;
:	Context specific value depending on device, 0 to 1 based ratio.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioCarbonDioxide&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioCarbonDioxide&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioNitrogen&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioNitrogen&lt;br /&gt;
:	The ratio of nitrogen in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioOxygen&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioOxygen&lt;br /&gt;
:	The ratio of oxygen in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioPollutant&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioPollutant&lt;br /&gt;
:	The ratio of pollutant in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioVolatiles&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioVolatiles&lt;br /&gt;
:	The ratio of volatiles in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioWater&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioWater&lt;br /&gt;
:	The ratio of water in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Reagents&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Reagents&lt;br /&gt;
&amp;lt;div id=&amp;quot;RecipeHash&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RecipeHash&lt;br /&gt;
&amp;lt;div id=&amp;quot;RequestHash&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RequestHash&lt;br /&gt;
&amp;lt;div id=&amp;quot;RequiredPower&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RequiredPower&lt;br /&gt;
&amp;lt;div id=&amp;quot;Setting&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Setting&lt;br /&gt;
&amp;lt;div id=&amp;quot;SolarAngle&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;SolarAngle&lt;br /&gt;
:    Solar angle of the device.&lt;br /&gt;
:  &amp;lt;code&amp;gt;l r0 d0 SolarAngle # Sets r0 to the solar angle of d0.&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;Temperature&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Temperature&lt;br /&gt;
&amp;lt;div id=&amp;quot;TemperatureSettings&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;TemperatureSettings&lt;br /&gt;
&amp;lt;div id=&amp;quot;TotalMoles&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;TotalMoles&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityMagnitude&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityMagnitude&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityRelativeX&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityRelativeX&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityRelativeY&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityRelativeY&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityRelativeZ&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityRelativeZ&lt;br /&gt;
&amp;lt;div id=&amp;quot;Vertical&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Vertical&lt;br /&gt;
:	Vertical setting of the device.&lt;br /&gt;
&amp;lt;div id=&amp;quot;VerticalRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VerticalRatio&lt;br /&gt;
:	Ratio of vertical setting for device.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Volume&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Volume&lt;br /&gt;
:	Returns the device atmosphere volume&lt;br /&gt;
&lt;br /&gt;
==Slot Variables==&lt;br /&gt;
In general (always?) slots are assigned as follows.&lt;br /&gt;
:Slot 0: Import&lt;br /&gt;
:Slot 1: Export&lt;br /&gt;
:Slot 2: Inside Machine&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Occupied&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Occupied&lt;br /&gt;
:&amp;lt;code&amp;gt;ls r0 d0 2 Occupied #Stores 1 in r0 if d0 has more seeds&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;ls vOccupied dThisVictim 2 Occupied #stores 1 in vOccupied if dThisVictim has more seeds&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;OccupantHash&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;OccupantHash&lt;br /&gt;
&amp;lt;div id=&amp;quot;Quantity&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Quantity&lt;br /&gt;
&amp;lt;div id=&amp;quot;Damage&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Damage&lt;br /&gt;
&amp;lt;div id=&amp;quot;Efficiency&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Efficiency&lt;br /&gt;
&amp;lt;div id=&amp;quot;Health&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Health&lt;br /&gt;
&amp;lt;div id=&amp;quot;Growth&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Growth&lt;br /&gt;
:&amp;lt;code&amp;gt;ls r0 d0 0 Growth # Store the numerical growth stage of d0 in r0&amp;lt;/code&amp;gt; &lt;br /&gt;
&amp;lt;div id=&amp;quot;Pressure&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Pressure&lt;br /&gt;
&amp;lt;div id=&amp;quot;Temperature&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Temperature&lt;br /&gt;
&amp;lt;div id=&amp;quot;Charge&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Charge&lt;br /&gt;
&amp;lt;div id=&amp;quot;ChargeRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ChargeRatio&lt;br /&gt;
&amp;lt;div id=&amp;quot;Class&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Class&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureWaste&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureWaste&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureAir&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureAir&lt;br /&gt;
&amp;lt;div id=&amp;quot;MaxQuantity&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;MaxQuantity&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Mature&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Mature&lt;br /&gt;
:&amp;lt;code&amp;gt;ls r0 d0 0 Mature # Store 1 in r0 if d0 has a mature crop&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;ls vMature dThisVictim 0 Mature # Store 1 in vMature if dThisVictim has a mature crop&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Examples=&lt;br /&gt;
Previous examples were obsolete due to game changes, or confusing, they have been moved into the Discussions section&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Harvie automation===&lt;br /&gt;
This script uses the batch instruction &amp;lt;code&amp;gt;sb ...&amp;lt;/code&amp;gt; to control all Harvie devices on the network. But only one Harvie and one Tray will be the &#039;&#039;master&#039;&#039; and have their values read, the rest of the Harvies will repeat exactly what this unit does. Some problems with this design is that different types of crops mature at different speeds, and if seeds were manually planted and the master unit recieved the first seed, the harvesting action will be performed too early on all the other plants since they are growing a few seconds slower.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot; data-expandtext=&amp;quot;{{int:Expand, Automated Harvie Script}}&amp;quot; data-collapsetext=&amp;quot;{{int:Collapse, Automated Harvie Script}}&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
alias dHarvie d0&lt;br /&gt;
alias dTray d1&lt;br /&gt;
&lt;br /&gt;
alias rHarvieHash r8&lt;br /&gt;
alias rTrayHash r9&lt;br /&gt;
l rHarvieHash dHarvie PrefabHash&lt;br /&gt;
l rTrayHash dTray PrefabHash&lt;br /&gt;
&lt;br /&gt;
main:&lt;br /&gt;
yield&lt;br /&gt;
 #read plant data from the Tray&lt;br /&gt;
ls r0 dTray 0 Mature&lt;br /&gt;
 #harvestable plants return 1, young plants return 0&lt;br /&gt;
 #nothing planted returns -1&lt;br /&gt;
beq r0 -1 plantCrop&lt;br /&gt;
beq r0 1 harvestCrop&lt;br /&gt;
ls r0 dTray 0 Seeding&lt;br /&gt;
 #seeds available returns 1, all seeds picked returns 0&lt;br /&gt;
 #plants too young or old for seeds returns -1&lt;br /&gt;
beq r0 1 harvestCrop&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
plantCrop:&lt;br /&gt;
 #stop the planting if no seeds available&lt;br /&gt;
 #otherwise it will plant nothing repeatedly&lt;br /&gt;
ls r0 dHarvie 0 Occupied&lt;br /&gt;
beq r0 0 main&lt;br /&gt;
sb rHarvieHash Plant 1&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
harvestCrop:&lt;br /&gt;
sb rHarvieHash Harvest 1&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
### End Script ###&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
===Solar Panel 2-axis tracking===&lt;br /&gt;
This script was copied from the [[Solar_Logic_Circuits_Guide]] (code provided by bti, comments and readability changes by Fudd79)&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot; data-expandtext=&amp;quot;{{int:Expand, Solar Panel 2-axis tracking}}&amp;quot; data-collapsetext=&amp;quot;{{int:Collapse, Solar Panel 2-axis tracking}}&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# This code assumes the following:&lt;br /&gt;
# Daylight Sensor data-port points north&lt;br /&gt;
# Solar Panel data-port points east&lt;br /&gt;
&lt;br /&gt;
alias sensor d0&lt;br /&gt;
alias v_angle r0&lt;br /&gt;
alias h_angle r1&lt;br /&gt;
alias sun_up r2&lt;br /&gt;
&lt;br /&gt;
define solar_panel_hash -539224550&lt;br /&gt;
define heavy_solar_panel_hash -1545574413&lt;br /&gt;
&lt;br /&gt;
start:&lt;br /&gt;
# Check to see if sun is up&lt;br /&gt;
l sun_up sensor Activate&lt;br /&gt;
# Go to reset if it&#039;s not&lt;br /&gt;
beqz sun_up reset&lt;br /&gt;
&lt;br /&gt;
# Calculate vertical angle&lt;br /&gt;
l v_angle sensor Vertical&lt;br /&gt;
div v_angle v_angle 1.5&lt;br /&gt;
sub v_angle 50 v_angle&lt;br /&gt;
&lt;br /&gt;
# Write vertical angle to all solar panels&lt;br /&gt;
sb solar_panel_hash Vertical v_angle&lt;br /&gt;
sb heavy_solar_panel_hash Vertical v_angle&lt;br /&gt;
&lt;br /&gt;
# Obtain horizontal angle&lt;br /&gt;
l h_angle sensor Horizontal&lt;br /&gt;
&lt;br /&gt;
# Write vertical angle to all solar panels&lt;br /&gt;
sb solar_panel_hash Horizontal h_angle&lt;br /&gt;
sb heavy_solar_panel_hash Horizontal h_angle&lt;br /&gt;
&lt;br /&gt;
# Go to start again&lt;br /&gt;
yield&lt;br /&gt;
j start&lt;br /&gt;
&lt;br /&gt;
reset:&lt;br /&gt;
# Park solar panels vertically facing sunrise&lt;br /&gt;
sb solar_panel_hash Vertical 0&lt;br /&gt;
sb heavy_solar_panel_hash Vertical 0&lt;br /&gt;
# Park solar panels horizontally facing sunrise&lt;br /&gt;
sb solar_panel_hash Horizontal -90&lt;br /&gt;
sb heavy_solar_panel_hash Horizontal -90&lt;br /&gt;
# Wait 10 seconds&lt;br /&gt;
sleep 10&lt;br /&gt;
# Go to start again&lt;br /&gt;
j start&lt;br /&gt;
&lt;br /&gt;
### End Script ###&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
===Example experiment: how many lines of code are executed each tick?===&lt;br /&gt;
To determine this, a script without &amp;lt;code&amp;gt;yield&amp;lt;/code&amp;gt; will be used. It should have as few lines as possible (so no labels are used, but a reset value at the top will be needed) and count the number of lines, the IC Housing will be used to display the result.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
move r0 1   #the first line has number 0&lt;br /&gt;
add r0 r0 3&lt;br /&gt;
s db Setting r0&lt;br /&gt;
j 1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Result (the numbers appears every 0.5 seconds):&lt;br /&gt;
&amp;lt;br&amp;gt;127&lt;br /&gt;
&amp;lt;br&amp;gt;256 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;385 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;511 (+126)&lt;br /&gt;
&amp;lt;br&amp;gt;640 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;769 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;895 (+126)&lt;br /&gt;
&amp;lt;br&amp;gt;1024 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;1153 (+129)&lt;br /&gt;
&lt;br /&gt;
There is a repeating +129, +129, +126 sequence, a hint that the real value is 128. Which also happens to be the number of lines in a script, which makes sense. A variation of this experiment will show that empty rows are also counted towards this number.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Links=&lt;br /&gt;
----&lt;br /&gt;
* [https://stationeering.com/tools/ic] Stationeering.com offers a programmable circuits simulator so you can develop your code without repeatedly dying in game!&lt;br /&gt;
* [https://hastebin.com/uwuhidozun.md]&lt;br /&gt;
* [http://www.easy68k.com/]&lt;br /&gt;
* [https://pastebin.com/6Uw1KSRN] syntax highlighting for IC10 MIPS for KDE kwrite/kate text editor&lt;br /&gt;
* [https://drive.google.com/file/d/1yEsJ-u94OkuMQ8K6fY7Ja1HNpLcAdjo_/view] syntax highlighting for IC10 MIPS for Notepad++&lt;br /&gt;
* [https://pastebin.com/3kmGy0NN] syntax highlighting for IC10 MIPS for Notepad++ (updated: 05/05/2021)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Index=&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|+Functions &lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
*[[#abs|abs]]&lt;br /&gt;
*[[#add|add]]&lt;br /&gt;
*[[#alias|alias]]&lt;br /&gt;
*[[#and|and]]&lt;br /&gt;
*[[#beq|beq]]&lt;br /&gt;
*[[#bgez|bgez]]&lt;br /&gt;
*[[#bgtz|bgtz]]&lt;br /&gt;
*[[#blez|blez]]&lt;br /&gt;
*[[#bltz|bltz]]&lt;br /&gt;
*[[#bne|bne]]&lt;br /&gt;
*[[#breq|breq]]&lt;br /&gt;
*[[#brgez|brgez]]&lt;br /&gt;
*[[#brgtz|brgtz]]&lt;br /&gt;
*[[#brlez|brlez]]&lt;br /&gt;
*[[#brltz|brltz]]&lt;br /&gt;
*[[#brne|brne]]&lt;br /&gt;
*[[#ceil|cell]]&lt;br /&gt;
*[[#div|div]]&lt;br /&gt;
*[[#exp|exp]]&lt;br /&gt;
*[[#floor|floor]]&lt;br /&gt;
*[[#j|j]]&lt;br /&gt;
*[[#jr|jr]]&lt;br /&gt;
*[[#l|l]]&lt;br /&gt;
*[[#log|log]]&lt;br /&gt;
*[[#ls|ls]]&lt;br /&gt;
*[[#max|max]]&lt;br /&gt;
*[[#min|min]]&lt;br /&gt;
*[[#mod|mod]]&lt;br /&gt;
*[[#move|move]]&lt;br /&gt;
*[[#mul|mul]]&lt;br /&gt;
*[[#nor|nor]]&lt;br /&gt;
*[[#or|or]]&lt;br /&gt;
*[[#rand|rand]]&lt;br /&gt;
*[[#round|round]]&lt;br /&gt;
*[[#s|s]]&lt;br /&gt;
*[[#slt|slt]]&lt;br /&gt;
*[[#sqrt|sqrt]]&lt;br /&gt;
*[[#sub|sub]]&lt;br /&gt;
*[[#trunc|trunc]]&lt;br /&gt;
*[[#xor|xor]]xor&lt;br /&gt;
*[[#yield|yield]]&lt;br /&gt;
*[[##|#]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|+Device Variables &lt;br /&gt;
&amp;lt;div  class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
*[[#Activate|Activate]]&lt;br /&gt;
*[[#AirRelease|AirRelease]]&lt;br /&gt;
*[[#Charge|Charge]]&lt;br /&gt;
*[[#CLearMemory|CLearMemory]]&lt;br /&gt;
*[[#Color|Color]]&lt;br /&gt;
*[[#CompletionRatio|CompletionRatio]]&lt;br /&gt;
*[[#ElevatorLevel|ElevatorLevel]]&lt;br /&gt;
*[[#ElevatorSpeed|ElevatorSpeed]]&lt;br /&gt;
*[[#Error|Error]]&lt;br /&gt;
*[[#ExportCount|ExportCount]]&lt;br /&gt;
*[[#Filtration|Filtration]]&lt;br /&gt;
*[[#Harvest|Harvest]]&lt;br /&gt;
*[[#Horizontal|Horizontal]]&lt;br /&gt;
*[[#HorizontalRatio|HorizontalRatio]]&lt;br /&gt;
*[[#Idle|Idle]]&lt;br /&gt;
*[[#ImportCount|ImportCount]]&lt;br /&gt;
*[[#Lock|Lock]]&lt;br /&gt;
*[[#Maximum|Maximum]]&lt;br /&gt;
*[[#Mode|Mode]]&lt;br /&gt;
*[[#On|On]]&lt;br /&gt;
*[[#Open|Open]]&lt;br /&gt;
*[[#Output|Output]]&lt;br /&gt;
*[[#Plant|Plant]]&lt;br /&gt;
*[[#PositionX|PositionX]]&lt;br /&gt;
*[[#PositionY|PositionY]]&lt;br /&gt;
*[[#PositionZ|PositionZ]]&lt;br /&gt;
*[[#Power|Power]]&lt;br /&gt;
*[[#PowerActual|PowerActual]]&lt;br /&gt;
*[[#PowerPotential|PowerPotential]]&lt;br /&gt;
*[[#PowerRequired|PowerRequired]]&lt;br /&gt;
*[[#Pressure|Pressure]]&lt;br /&gt;
*[[#PressureExternal|PressureExternal]]&lt;br /&gt;
*[[#PressureInteral|PressureInteral]]&lt;br /&gt;
*[[#PressureSetting|PressureSetting]]&lt;br /&gt;
*[[#Quantity|Quantity]]&lt;br /&gt;
*[[#Ratio|Ratio]]&lt;br /&gt;
*[[#RatioCarbonDioxide|RatioCarbonDioxide]]&lt;br /&gt;
*[[#RatioNitrogen|RatioNitrogen]]&lt;br /&gt;
*[[#RatioOxygen|RatioOxygen]]&lt;br /&gt;
*[[#RatioPollutant|RatioPollutant]]&lt;br /&gt;
*[[#RatioVolatiles|RatioVolatiles]]&lt;br /&gt;
*[[#RatioWater|RatioWater]]&lt;br /&gt;
*[[#Reagents|Reagents]]&lt;br /&gt;
*[[#RecipeHash|RecipeHash]]&lt;br /&gt;
*[[#RequestHash|RequestHash]]&lt;br /&gt;
*[[#RequiredPower|RequiredPower]]&lt;br /&gt;
*[[#Setting|Setting]]&lt;br /&gt;
*[[#SolarAngle|SolarAngle]]&lt;br /&gt;
*[[#Temperature|Temperature]]&lt;br /&gt;
*[[#TemperatureSettings|TemperatureSettings]]&lt;br /&gt;
*[[#TotalMoles|TotalMoles]]&lt;br /&gt;
*[[#VelocityMagnitude|VelocityMagnitude]]&lt;br /&gt;
*[[#VelocityRelativeX|VelocityRelativeX]]&lt;br /&gt;
*[[#VelocityRelativeY|VelocityRelativeY]]&lt;br /&gt;
*[[#VelocityRelativeZ|VelocityRelativeZ]]&lt;br /&gt;
*[[#Vertical|Vertical]]&lt;br /&gt;
*[[#VerticalRatio|VerticalRatio]]&lt;br /&gt;
*[[#Volume|Volume]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|+Slot Variables &lt;br /&gt;
&amp;lt;div  class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
*[[#Occupied|Occupied]]&lt;br /&gt;
*[[#OccupantHash|OccupantHash]]&lt;br /&gt;
*[[#Quantity|Quantity]]&lt;br /&gt;
*[[#Damage|Damage]]&lt;br /&gt;
*[[#Efficiency|Efficiency]]&lt;br /&gt;
*[[#Health|Health]]&lt;br /&gt;
*[[#Growth|Growth]]&lt;br /&gt;
*[[#Pressure|Pressure]]&lt;br /&gt;
*[[#Temperature|Temperature]]&lt;br /&gt;
*[[#Charge|Charge]]&lt;br /&gt;
*[[#ChargeRatio|ChargeRatio]]&lt;br /&gt;
*[[#Class|Class]]&lt;br /&gt;
*[[#PressureWaste|PressureWaste]]&lt;br /&gt;
*[[#PressureAir|PressureAir]]&lt;br /&gt;
*[[#MaxQuantity|MaxQuantity]]&lt;br /&gt;
*[[#Mature|Mature]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=IC10&amp;diff=11364</id>
		<title>IC10</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=IC10&amp;diff=11364"/>
		<updated>2021-12-09T13:49:13Z</updated>

		<summary type="html">&lt;p&gt;Wark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:MIPS Programming]]&lt;br /&gt;
=MIPS scripting language for IC10 housings / chips=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Text after a # will be ignored to the end of the line. The amount of white&lt;br /&gt;
# space between arguments isn&#039;t important, but new lines start a new command.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Registers==&lt;br /&gt;
The IC contains 16 registers, numbered r0-r15. Think of these as variables in other programming languages. In fact, you can name them with the alias command (see below).&lt;br /&gt;
&lt;br /&gt;
To set a register directly (such as r0=2), use the &amp;lt;b&amp;gt;move&amp;lt;/b&amp;gt; command. To read a value from a device, use l (load). To write a value back to a device, use s (set). Note that&lt;br /&gt;
like most machine languages, the &amp;lt;i&amp;gt;destination&amp;lt;/i&amp;gt; goes first, so instructions always look like: action destination source.&lt;br /&gt;
&lt;br /&gt;
There are two more registers. One called ra (return address) and one called sp (stack pointer). The ra is used by certain jump and branching instructions (those ending with -al) to remember which line in the script it should return to. The sp tracks the next index within the stack (a memory that can store up to 512 values) to be pushed (written) to or popped (read) from. Neither ra or sp is protected, their values can be changed by instructions like any other register.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 10&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Sets r0 to the value 10&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 r1&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Copies the value of r1 to r0&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r0 d0 Temperature&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Reads the Temperature parameter from device 0 and places the value in r0 (not all devices have a Temperature parameter, check the in-game stationpedia)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s d0 On r0&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Writes the value from register 0 out to On parameter of device 0 (if r0 equals 0 the device will turn off, if r0 equals 1 it will turn on)&lt;br /&gt;
&lt;br /&gt;
==Device Ports==&lt;br /&gt;
ICs can interact with up to 6 other devices via d0 - d5, as well as the device it&#039;s attached to via db. To change or set a device, use a screwdriver and adjust the device in the IC housing. You can read or set any of the device&#039;s properties, so it is possible to do things like read the pressure and oxygen content of a room on the same Device port. &lt;br /&gt;
&lt;br /&gt;
The l (load) and s (set) instructions let you read and set values on a device.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r0 d0 Temperature&amp;lt;/code&amp;gt; #Reads the temperature from an atmosphere sensor into r0.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s d1 Setting r0 &amp;lt;/code&amp;gt; # Writes r0 to the device on port 1 to the Setting variable.&lt;br /&gt;
&lt;br /&gt;
==Labels==&lt;br /&gt;
Lables are used to make it easier to jump between lines in the script. The label will have a numerical value that is the same as its line number. Even though it&#039;s possible to use a labels value for calculations, doing so is a bad idea since any changes to the code can change the line numbers of the labels.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;main:&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;j main&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Constants==&lt;br /&gt;
Instead of using a register to store a fixed value, a constant can be made. Using this name will refer to the assigned value.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;define pi 3.14159&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move r0 pi&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Indirect referencing==&lt;br /&gt;
This is a way of accessing a register by using another register as a pointer. Adding an additional r infront of the register turns on this behaviour. The value stored in the register being used as the pointer must be between 0 to 15, this will then point to a register from r0 to r15, higher or lower values will cause an error.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 5&amp;lt;/code&amp;gt; stores the value 5 in r0&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move rr0 10&amp;lt;/code&amp;gt; is now the same as &amp;lt;code&amp;gt;move r5 10&amp;lt;/code&amp;gt; since r0 has the value 5, rr0 points at the register r5&lt;br /&gt;
&lt;br /&gt;
Additional r&#039;s can be added to do indirect referencing multiple times in a row.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move r1 2&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move r2 3&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move rrr1 4&amp;lt;/code&amp;gt; is now the same as &amp;lt;code&amp;gt;move r3 4&amp;lt;/code&amp;gt; since r1 points at r2 which points at r3&lt;br /&gt;
&lt;br /&gt;
This also works with devices&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move r0 2&amp;lt;/code&amp;gt; stores the value 2 in r0&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;s dr0 On 1&amp;lt;/code&amp;gt; is now the same as &amp;lt;code&amp;gt;s d2 On 1&amp;lt;/code&amp;gt;, r0 has the value 2 so dr0 points at d2&lt;br /&gt;
&lt;br /&gt;
==Debugging advice==&lt;br /&gt;
The value stored in a register can easily be seen by writing it to the Setting parameter of the IC housing, this has no sideeffects, too see the value just stand close and look directly at the housing (&amp;lt;code&amp;gt;s db Setting r0&amp;lt;/code&amp;gt;).&lt;br /&gt;
&amp;lt;br&amp;gt;To check if a certain block of code is executed, use the above trick but with a number that you choose, like the line number (&amp;lt;code&amp;gt;s db Setting 137&amp;lt;/code&amp;gt;).&lt;br /&gt;
&amp;lt;br&amp;gt;The configuration card can be used to manually check the data values stored in all connected devices.&lt;br /&gt;
&lt;br /&gt;
==Learning MIPS==&lt;br /&gt;
MIPS can be difficult to get started with. So here is a list of instructions that are useful for beginners. These can be used to write many different scripts.&lt;br /&gt;
&lt;br /&gt;
General:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
alias (make the script easier to read by assigning a name to a register or device, example: alias rTemperature r15)&lt;br /&gt;
label: (where &amp;quot;label&amp;quot; can be replaced with almost any word, jump and branch instructions will go to these, example: start:)&lt;br /&gt;
yield (pause for 1-tick and then resume, if not used the script will automatically pause for 1-tick every 128 lines)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Jumps:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
j label&lt;br /&gt;
jal label (stores the next line number into the &amp;quot;return address&amp;quot;-register and then jump to label)&lt;br /&gt;
j ra (jump to the &amp;quot;return address&amp;quot;)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Branching (jump-if):&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
beq (branch if equal)&lt;br /&gt;
bne (branch if not-equal)&lt;br /&gt;
bgt (branch if greater than)&lt;br /&gt;
blt (branch if less than)&lt;br /&gt;
The suffix -al can be added to each of these (example: beqal) to save the next line number into the &amp;quot;return address&amp;quot; register&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Device interactions:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
l (load)&lt;br /&gt;
lb (load batch, requires one of the following: Average / Sum / Minimum / Maximum)&lt;br /&gt;
ls (load slot)&lt;br /&gt;
s (store)&lt;br /&gt;
sb (store batch)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Logic and Math:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
seqz (common NOT-gate: turns 0 into 1, and all other values into 0)&lt;br /&gt;
move&lt;br /&gt;
add (addition)&lt;br /&gt;
sub (subtraction)&lt;br /&gt;
mul (multiplication)&lt;br /&gt;
div (division)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Common device variables:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
On (1 is on, 0 is off)&lt;br /&gt;
Open (1 is open, 0 is closed)&lt;br /&gt;
Setting (meaning varies between devices, example: a LED display(console) will show this value)&lt;br /&gt;
Activate (1 usually means running, example: a Daylight sensor is 1 when the sun shines on it)&lt;br /&gt;
Temperature (in Kelvin, Celsius + 273.15)&lt;br /&gt;
Pressure (in kPa)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Notes:&lt;br /&gt;
&amp;lt;br&amp;gt;-All instructions and variables can be seen in-game in the MIPS editor window by clicking the &amp;quot;f&amp;quot;, &amp;quot;x&amp;quot; and &amp;quot;s(x)&amp;quot; buttons on the top right.&lt;br /&gt;
&amp;lt;br&amp;gt;-The stationpedia is the best source to see which variables are available to each device.&lt;br /&gt;
&amp;lt;br&amp;gt;-Most scripts are loops, they end with a jump instruction that leads back up to the start. Otherwise they will just run once and then stop.&lt;br /&gt;
&lt;br /&gt;
Two practice scripts:&lt;br /&gt;
&amp;lt;br&amp;gt;Automatic Night Light: Load &amp;quot;Activate&amp;quot; from a Daylight sensor, flip the value with a NOT-gate, store the value to the &amp;quot;On&amp;quot; variable of one or more lights.&lt;br /&gt;
&amp;lt;br&amp;gt;Automatic Wall Cooler: Read &amp;quot;Temperature&amp;quot; from a Gas Sensor. Branch if the value is greater than X, turn on the cooler. Branch if the value is less than Y, turn off the cooler. (Wall coolers need a minumum of 12.5 kPa pressure in the connected pipe)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Instructions=&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;alias&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;alias&lt;br /&gt;
:alias str r? d? # labels register or device reference with name.  When alias is applied to a device, it will affect what shows on the screws in the IC base.  (housing)&lt;br /&gt;
&amp;lt;code&amp;gt;alias vTemperature r0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;alias dAutoHydro1 d0&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;move&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;move    &lt;br /&gt;
:d s     # stores the value of s in d&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 42 # Store 42 in register 0&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;l&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;load&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;l (load)&lt;br /&gt;
:l r# d# parameter&lt;br /&gt;
Reads from a device (d#) and stores the value in a register (r#)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r0 d0 Setting&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Read from the device on d0 into register 0&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r1 d5 Pressure&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Read the pressure from a sensor&lt;br /&gt;
&lt;br /&gt;
This also works with aliases. For example:&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
alias Sensor d0 &amp;lt;br/&amp;gt;&lt;br /&gt;
l r0 Sensor Temperature&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;ls&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;load slot&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ls (load slot)&lt;br /&gt;
:ls r# d# slotNum parameter&lt;br /&gt;
Reads from a slot (slotNum) of a device (d#)  and stores the value in a register (r#)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;ls r0 d0 2 Occupied&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Read from the second slot of device on d0, stores 1 in r0 if it&#039;s occupied, 0 otherwise.&lt;br /&gt;
&lt;br /&gt;
And here is the code to read the charge of an AIMeE:&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
alias robot d0 &amp;lt;br/&amp;gt;&lt;br /&gt;
alias charge r0 &amp;lt;br/&amp;gt;&lt;br /&gt;
ls charge robot 0 Charge &lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;s&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;set&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;s (set)&lt;br /&gt;
:s d# parameter r#&lt;br /&gt;
Writes a setting to a device. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s d0 Setting r0&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;add&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;add     &lt;br /&gt;
:d s t   # calculates s + t and stores the result in d&lt;br /&gt;
&amp;lt;code&amp;gt;add r0 r1 1 # add 1 to r1 and store the result as r0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;add r0 r0 1 # increment r0 by one&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;sub&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;sub     &lt;br /&gt;
:d s t   # calculates s - t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;mul&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;mul     &lt;br /&gt;
:d s t   # calculates s * t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;div&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;div     &lt;br /&gt;
:d s t   # calculates s / t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;mod&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;mod     &lt;br /&gt;
:d s t   &lt;br /&gt;
::# calculates s mod t and stores the result in d. Note this&lt;br /&gt;
::# doesn&#039;t behave like the % operator - the result will be &lt;br /&gt;
::# positive even if the either of the operands are negative&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;slt&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;slt     &lt;br /&gt;
:d s t   # stores 1 in d if s &amp;lt; t, 0 otherwise&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;sqrt&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;sqrt    &lt;br /&gt;
:d s     # calculates sqrt(s) and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;round&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;round   &lt;br /&gt;
:d s     # finds the rounded value of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;trunc&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;trunc   &lt;br /&gt;
:d s     # finds the truncated value of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;ceil&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ceil   &lt;br /&gt;
: d s     # calculates the ceiling of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;floor&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;floor  &lt;br /&gt;
: d s     # calculates the floor of s and stores the result in d&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;max&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;max    &lt;br /&gt;
: d s t   # calculates the maximum of s and t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;min&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;min    &lt;br /&gt;
: d s t   # calculates the minimum of s and t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;abs&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;abs    &lt;br /&gt;
: d s     # calculates the absolute value of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;log&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;log    &lt;br /&gt;
: d s     # calculates the natural logarithm of s and stores the result&lt;br /&gt;
::# in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;exp&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;exp    &lt;br /&gt;
: d s     # calculates the exponential of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;rand&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;rand   &lt;br /&gt;
: d       # selects a random number uniformly at random between 0 and 1&lt;br /&gt;
::# inclusive and stores the result in d&lt;br /&gt;
&lt;br /&gt;
::# boolean arithmetic uses the C convention that 0 is false and any non-zero&lt;br /&gt;
::# value is true.&lt;br /&gt;
&amp;lt;div id=&amp;quot;and&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;and    &lt;br /&gt;
: d s t   # stores 1 in d if both s and t have non-zero values,&lt;br /&gt;
::# 0 otherwise&lt;br /&gt;
&amp;lt;div id=&amp;quot;or&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;or     &lt;br /&gt;
: d s t   # stores 1 in d if either s or t have non-zero values,&lt;br /&gt;
::# 0 otherwise&lt;br /&gt;
&amp;lt;div id=&amp;quot;xor&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;xor    &lt;br /&gt;
: d s t   # stores 1 in d if exactly one of s and t are non-zero,&lt;br /&gt;
::# 0 otherwise&lt;br /&gt;
&amp;lt;div id=&amp;quot;nor&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;nor &lt;br /&gt;
:    d s t   # stores 1 in d if both s and t equal zero, 0 otherwise&lt;br /&gt;
::# Lines are numbered starting at zero&lt;br /&gt;
&amp;lt;div id=&amp;quot;j&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;j&lt;br /&gt;
:             a # jumps to line a.&lt;br /&gt;
&amp;lt;div id=&amp;quot;bltz&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bltz&lt;br /&gt;
:      s   a # jumps to line a if s &amp;lt;  0&lt;br /&gt;
&amp;lt;div id=&amp;quot;blez&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;blez &lt;br /&gt;
:     s   a # jumps to line a if s &amp;lt;= 0&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;bgez&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bgez &lt;br /&gt;
:     s   a # jumps to line a if s &amp;gt;= 0&lt;br /&gt;
&amp;lt;div id=&amp;quot;bgtz&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bgtz&lt;br /&gt;
:      s   a # jumps to line a if s &amp;gt;  0&lt;br /&gt;
&amp;lt;div id=&amp;quot;beq&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;beq &lt;br /&gt;
:      s t a # jumps to line a if s == t&lt;br /&gt;
&amp;lt;div id=&amp;quot;bne&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bne &lt;br /&gt;
:      s t a # jumps to line a if s != t&lt;br /&gt;
&amp;lt;div id=&amp;quot;bdseal&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bdseal&lt;br /&gt;
:    d? a(r?|num) # Jump execution to line a and store current line number if device d? is set.&lt;br /&gt;
&amp;lt;code&amp;gt;bdseal d0 32 #Store line number and jump to line 32 if d0 is assigned.&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;BR&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;bdseal dThisVictim HarvestCrop #Store line in ra and jump to sub HarvestCrop if device dThisVictim is assigned.&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;yield&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;yield           &lt;br /&gt;
: 	# ceases code execution for this power tick&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;lb&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;lb&lt;br /&gt;
:      r? typeHash var batchMode # Loads var from all output network devices with provided typeHash  using provided batchMode: Average(0), Sum (1), Minimum (2), Maximum (3). Can be used word or number. Result store into r?&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;sb&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;sb&lt;br /&gt;
:      typeHash var r? # Store register r? to var on all output network devices with provided typeHash&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
; #&lt;br /&gt;
:     # The following text will be ignored during compiling; use this to create comments.&lt;br /&gt;
&lt;br /&gt;
[https://www.cs.tufts.edu/comp/140/lectures/Day_3/mips_summary.pdf Other examples]&lt;br /&gt;
&lt;br /&gt;
== Conditional functions cheatsheet ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! suffix !! description !! branch to line !! branch and store return address !! relative jump to line !! set register&lt;br /&gt;
|-&lt;br /&gt;
| prefix: ||  || b- || b-al || br- || s-&lt;br /&gt;
|-&lt;br /&gt;
|  || unconditional || j    || jal    || jr    || &lt;br /&gt;
|-&lt;br /&gt;
| -eq  || if a == b || beq  || beqal  || breq  || seq&lt;br /&gt;
|-&lt;br /&gt;
| -eqz || if a == 0 || beqz || beqzal || breqz || seqz&lt;br /&gt;
|-&lt;br /&gt;
| -ge  || if a &amp;gt;= b || bge  || bgeal  || brge  || sge&lt;br /&gt;
|-&lt;br /&gt;
| -gez || if a &amp;gt;= 0 || bgez || bgezal || brgez || sgez&lt;br /&gt;
|-&lt;br /&gt;
| -gt  || if a &amp;gt; b  || bgt  || bgtal  || brgt  || sgt&lt;br /&gt;
|-&lt;br /&gt;
| -gtz || if a &amp;gt; 0  || bgtz || bgtzal || brgtz || sgtz&lt;br /&gt;
|-&lt;br /&gt;
| -le  || if a &amp;lt;= b || ble  || bleal  || brle  || sle&lt;br /&gt;
|-&lt;br /&gt;
| -lez || if a &amp;lt;= 0 || blez || blezal || brlez || slez&lt;br /&gt;
|-&lt;br /&gt;
| -lt  || if a &amp;lt; b  || blt  || bltal  || brlt  || slt&lt;br /&gt;
|-&lt;br /&gt;
| -ltz || if a &amp;lt; 0  || bltz || bltzal || brltz || sltz&lt;br /&gt;
|-&lt;br /&gt;
| -ne  || if a != b || bne  || bneal  || brne  || sne&lt;br /&gt;
|-&lt;br /&gt;
| -nez || if a != 0 || bnez || bnezal || brnez || snez&lt;br /&gt;
|-&lt;br /&gt;
| -dns || if device d is not set          || bdns || bdnsal || brdns || sdns&lt;br /&gt;
|-&lt;br /&gt;
| -dse || if device d is set              || bdse || bdseal || brdse || sdse&lt;br /&gt;
|-&lt;br /&gt;
| -ap  || if a approximately equals b     || bap  || bapal  || brap  || sap&lt;br /&gt;
|-&lt;br /&gt;
| -apz || if a approximately equals 0     || bapz || bapzal || brapz || sapz&lt;br /&gt;
|-&lt;br /&gt;
| -na  || if a not approximately equals b || bna  || bnaal  || brna  || sna&lt;br /&gt;
|-&lt;br /&gt;
| -naz || if a not approximately equals 0 || bnaz || bnazal || brnaz || snaz&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
All &amp;lt;code&amp;gt;b-&amp;lt;/code&amp;gt; commands require target line as last argument, all &amp;lt;code&amp;gt;s-&amp;lt;/code&amp;gt; commands require register to store result as first argument. All &amp;lt;code&amp;gt;br-&amp;lt;/code&amp;gt; commands require number to jump relatively as last argument. e.g. &amp;lt;code&amp;gt;breq a b 3&amp;lt;/code&amp;gt; means if a=b then jump to 3 lines after.&lt;br /&gt;
&lt;br /&gt;
All approximate functions require additional argument denoting how close two numbers need to be considered equal. E.g.: &amp;lt;code&amp;gt;sap r0 100 101 0.01&amp;lt;/code&amp;gt; will consider 100 and 101 almost equal (not more than 1%=0.01 different) and will set r0 to 1. The exact formula is &amp;lt;code&amp;gt;if abs(a - b) &amp;lt;= max(c * max(abs(a), abs(b)), float.epsilon * 8)&amp;lt;/code&amp;gt; for &amp;lt;code&amp;gt;-ap&amp;lt;/code&amp;gt; and is similar for other approximate functions.&lt;br /&gt;
&lt;br /&gt;
==Device Variables==&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Activate&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Activate&lt;br /&gt;
:1 if device is activated (usually means running), otherwise 0&lt;br /&gt;
:&amp;lt;code&amp;gt;l r0 d0 Activate # sets r0 to 1 if on or 0 if off&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;AirRelease&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;AirRelease&lt;br /&gt;
&amp;lt;div id=&amp;quot;Charge&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Charge&lt;br /&gt;
:    The current charge the device has.&lt;br /&gt;
&amp;lt;div id=&amp;quot;CLearMemory&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;CLearMemory&lt;br /&gt;
:    When set to 1, clears the counter memory (e.g. ExportCount).  Will set itself back to 0 when triggered.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Color&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Color&lt;br /&gt;
:    0 (or lower) = Blue&lt;br /&gt;
:    1 = Grey&lt;br /&gt;
:    2 = Green&lt;br /&gt;
:    3 = Orange&lt;br /&gt;
:    4 = Red&lt;br /&gt;
:    5 = Yellow&lt;br /&gt;
:    6 = White&lt;br /&gt;
:    7 = Black&lt;br /&gt;
:    8 = Brown&lt;br /&gt;
:    9 = Khaki&lt;br /&gt;
:    10 = Pink&lt;br /&gt;
:    11 (or higher) = Purple&lt;br /&gt;
&amp;lt;div id=&amp;quot;CompletionRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;CompletionRatio&lt;br /&gt;
&amp;lt;div id=&amp;quot;ElevatorLevel&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ElevatorLevel&lt;br /&gt;
&amp;lt;div id=&amp;quot;ElevatorSpeed&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ElevatorSpeed&lt;br /&gt;
&amp;lt;div id=&amp;quot;Error&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Error&lt;br /&gt;
:	1 if device is in error state, otherwise 0&lt;br /&gt;
&amp;lt;div id=&amp;quot;ExportCount&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ExportCount&lt;br /&gt;
:    How many items exporfted since last ClearMemory.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Filtration&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Filtration&lt;br /&gt;
:	The current state of the filtration system.  For example filtration = 1 for a Hardsuit when filtration is On.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Harvest&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Harvest&lt;br /&gt;
:	Performs the harvesting action for any plant based machinery.&lt;br /&gt;
:  &amp;lt;code&amp;gt;s d0 Harvest 1 # Performs 1 harvest action on device d0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;Horizontal&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Horizontal&lt;br /&gt;
&amp;lt;div id=&amp;quot;HorizontalRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;HorizontalRatio&lt;br /&gt;
&amp;lt;div id=&amp;quot;Idle&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Idle&lt;br /&gt;
&amp;lt;div id=&amp;quot;ImportCount&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ImportCount&lt;br /&gt;
&amp;lt;div id=&amp;quot;Lock&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Lock&lt;br /&gt;
&amp;lt;div id=&amp;quot;Maximum&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Maximum&lt;br /&gt;
&amp;lt;div id=&amp;quot;Mode&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Mode&lt;br /&gt;
&amp;lt;div id=&amp;quot;On&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;On&lt;br /&gt;
&amp;lt;div id=&amp;quot;Open&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Open&lt;br /&gt;
&amp;lt;div id=&amp;quot;Output&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Output&lt;br /&gt;
&amp;lt;div id=&amp;quot;Plant&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Plant&lt;br /&gt;
:    Performs the planting operation for any plant based machinery.&lt;br /&gt;
:  &amp;lt;code&amp;gt;s d0 Plant 1 # Plants one crop in device d0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;PositionX&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PositionX&lt;br /&gt;
&amp;lt;div id=&amp;quot;PositionY&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PositionY&lt;br /&gt;
&amp;lt;div id=&amp;quot;PositionZ&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PositionZ&lt;br /&gt;
&amp;lt;div id=&amp;quot;Power&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Power&lt;br /&gt;
&amp;lt;div id=&amp;quot;PowerActual&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PowerActual&lt;br /&gt;
&amp;lt;div id=&amp;quot;PowerPotential&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PowerPotential&lt;br /&gt;
&amp;lt;div id=&amp;quot;PowerRequired&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PowerRequired&lt;br /&gt;
&amp;lt;div id=&amp;quot;Pressure&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Pressure&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureExternal&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureExternal&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureInteral&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureInteral&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureSetting&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureSetting&lt;br /&gt;
&amp;lt;div id=&amp;quot;Quantity&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Quantity&lt;br /&gt;
:	Total quantity in the device.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Ratio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Ratio&lt;br /&gt;
:	Context specific value depending on device, 0 to 1 based ratio.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioCarbonDioxide&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioCarbonDioxide&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioNitrogen&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioNitrogen&lt;br /&gt;
:	The ratio of nitrogen in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioOxygen&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioOxygen&lt;br /&gt;
:	The ratio of oxygen in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioPollutant&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioPollutant&lt;br /&gt;
:	The ratio of pollutant in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioVolatiles&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioVolatiles&lt;br /&gt;
:	The ratio of volatiles in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioWater&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioWater&lt;br /&gt;
:	The ratio of water in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Reagents&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Reagents&lt;br /&gt;
&amp;lt;div id=&amp;quot;RecipeHash&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RecipeHash&lt;br /&gt;
&amp;lt;div id=&amp;quot;RequestHash&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RequestHash&lt;br /&gt;
&amp;lt;div id=&amp;quot;RequiredPower&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RequiredPower&lt;br /&gt;
&amp;lt;div id=&amp;quot;Setting&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Setting&lt;br /&gt;
&amp;lt;div id=&amp;quot;SolarAngle&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;SolarAngle&lt;br /&gt;
:    Solar angle of the device.&lt;br /&gt;
:  &amp;lt;code&amp;gt;l r0 d0 SolarAngle # Sets r0 to the solar angle of d0.&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;Temperature&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Temperature&lt;br /&gt;
&amp;lt;div id=&amp;quot;TemperatureSettings&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;TemperatureSettings&lt;br /&gt;
&amp;lt;div id=&amp;quot;TotalMoles&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;TotalMoles&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityMagnitude&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityMagnitude&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityRelativeX&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityRelativeX&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityRelativeY&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityRelativeY&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityRelativeZ&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityRelativeZ&lt;br /&gt;
&amp;lt;div id=&amp;quot;Vertical&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Vertical&lt;br /&gt;
:	Vertical setting of the device.&lt;br /&gt;
&amp;lt;div id=&amp;quot;VerticalRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VerticalRatio&lt;br /&gt;
:	Ratio of vertical setting for device.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Volume&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Volume&lt;br /&gt;
:	Returns the device atmosphere volume&lt;br /&gt;
&lt;br /&gt;
==Slot Variables==&lt;br /&gt;
In general (always?) slots are assigned as follows.&lt;br /&gt;
:Slot 0: Import&lt;br /&gt;
:Slot 1: Export&lt;br /&gt;
:Slot 2: Inside Machine&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Occupied&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Occupied&lt;br /&gt;
:&amp;lt;code&amp;gt;ls r0 d0 2 Occupied #Stores 1 in r0 if d0 has more seeds&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;ls vOccupied dThisVictim 2 Occupied #stores 1 in vOccupied if dThisVictim has more seeds&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;OccupantHash&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;OccupantHash&lt;br /&gt;
&amp;lt;div id=&amp;quot;Quantity&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Quantity&lt;br /&gt;
&amp;lt;div id=&amp;quot;Damage&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Damage&lt;br /&gt;
&amp;lt;div id=&amp;quot;Efficiency&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Efficiency&lt;br /&gt;
&amp;lt;div id=&amp;quot;Health&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Health&lt;br /&gt;
&amp;lt;div id=&amp;quot;Growth&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Growth&lt;br /&gt;
:&amp;lt;code&amp;gt;ls r0 d0 0 Growth # Store the numerical growth stage of d0 in r0&amp;lt;/code&amp;gt; &lt;br /&gt;
&amp;lt;div id=&amp;quot;Pressure&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Pressure&lt;br /&gt;
&amp;lt;div id=&amp;quot;Temperature&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Temperature&lt;br /&gt;
&amp;lt;div id=&amp;quot;Charge&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Charge&lt;br /&gt;
&amp;lt;div id=&amp;quot;ChargeRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ChargeRatio&lt;br /&gt;
&amp;lt;div id=&amp;quot;Class&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Class&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureWaste&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureWaste&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureAir&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureAir&lt;br /&gt;
&amp;lt;div id=&amp;quot;MaxQuantity&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;MaxQuantity&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Mature&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Mature&lt;br /&gt;
:&amp;lt;code&amp;gt;ls r0 d0 0 Mature # Store 1 in r0 if d0 has a mature crop&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;ls vMature dThisVictim 0 Mature # Store 1 in vMature if dThisVictim has a mature crop&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Examples=&lt;br /&gt;
Previous examples were obsolete due to game changes, or confusing, they have been moved into the Discussions section&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Harvie automation===&lt;br /&gt;
This script uses the batch instruction &amp;lt;code&amp;gt;sb ...&amp;lt;/code&amp;gt; to control all Harvie devices on the network. But only one Harvie and one Tray will be the &#039;&#039;master&#039;&#039; and have their values read, the rest of the Harvies will repeat exactly what this unit does. Some problems with this design is that different types of crops mature at different speeds, and if seeds were manually planted and the master unit recieved the first seed, the harvesting action will be performed too early on all the other plants since they are growing a few seconds slower.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot; data-expandtext=&amp;quot;{{int:Expand, Automated Harvie Script}}&amp;quot; data-collapsetext=&amp;quot;{{int:Collapse, Automated Harvie Script}}&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
alias dHarvie d0&lt;br /&gt;
alias dTray d1&lt;br /&gt;
&lt;br /&gt;
alias rHarvieHash r8&lt;br /&gt;
alias rTrayHash r9&lt;br /&gt;
l rHarvieHash dHarvie PrefabHash&lt;br /&gt;
l rTrayHash dTray PrefabHash&lt;br /&gt;
&lt;br /&gt;
main:&lt;br /&gt;
yield&lt;br /&gt;
 #read plant data from the Tray&lt;br /&gt;
ls r0 dTray 0 Mature&lt;br /&gt;
 #harvestable plants return 1, young plants return 0&lt;br /&gt;
 #nothing planted returns -1&lt;br /&gt;
beq r0 -1 plantCrop&lt;br /&gt;
beq r0 1 harvestCrop&lt;br /&gt;
ls r0 dTray 0 Seeding&lt;br /&gt;
 #seeds available returns 1, all seeds picked returns 0&lt;br /&gt;
 #plants too young or old for seeds returns -1&lt;br /&gt;
beq r0 1 harvestCrop&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
plantCrop:&lt;br /&gt;
 #stop the planting if no seeds available&lt;br /&gt;
 #otherwise it will plant nothing repeatedly&lt;br /&gt;
ls r0 dHarvie 0 Occupied&lt;br /&gt;
beq r0 0 main&lt;br /&gt;
sb rHarvieHash Plant 1&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
harvestCrop:&lt;br /&gt;
sb rHarvieHash Harvest 1&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
### End Script ###&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
===Solar Panel 2-axis tracking===&lt;br /&gt;
This script was copied from the [[Solar_Logic_Circuits_Guide]] (code provided by bti, comments and readability changes by Fudd79)&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot; data-expandtext=&amp;quot;{{int:Expand, Solar Panel 2-axis tracking}}&amp;quot; data-collapsetext=&amp;quot;{{int:Collapse, Solar Panel 2-axis tracking}}&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# This code assumes the following:&lt;br /&gt;
# Daylight Sensor data-port points north&lt;br /&gt;
# Solar Panel data-port points east&lt;br /&gt;
&lt;br /&gt;
alias sensor d0&lt;br /&gt;
alias v_angle r0&lt;br /&gt;
alias h_angle r1&lt;br /&gt;
alias sun_up r2&lt;br /&gt;
&lt;br /&gt;
define solar_panel_hash -539224550&lt;br /&gt;
define heavy_solar_panel_hash -1545574413&lt;br /&gt;
&lt;br /&gt;
start:&lt;br /&gt;
# Check to see if sun is up&lt;br /&gt;
l sun_up sensor Activate&lt;br /&gt;
# Go to reset if it&#039;s not&lt;br /&gt;
beqz sun_up reset&lt;br /&gt;
&lt;br /&gt;
# Calculate vertical angle&lt;br /&gt;
l v_angle sensor Vertical&lt;br /&gt;
div v_angle v_angle 1.5&lt;br /&gt;
sub v_angle 50 v_angle&lt;br /&gt;
&lt;br /&gt;
# Write vertical angle to all solar panels&lt;br /&gt;
sb solar_panel_hash Vertical v_angle&lt;br /&gt;
sb heavy_solar_panel_hash Vertical v_angle&lt;br /&gt;
&lt;br /&gt;
# Obtain horizontal angle&lt;br /&gt;
l h_angle sensor Horizontal&lt;br /&gt;
&lt;br /&gt;
# Write vertical angle to all solar panels&lt;br /&gt;
sb solar_panel_hash Horizontal h_angle&lt;br /&gt;
sb heavy_solar_panel_hash Horizontal h_angle&lt;br /&gt;
&lt;br /&gt;
# Go to start again&lt;br /&gt;
yield&lt;br /&gt;
j start&lt;br /&gt;
&lt;br /&gt;
reset:&lt;br /&gt;
# Park solar panels vertically facing sunrise&lt;br /&gt;
sb solar_panel_hash Vertical 0&lt;br /&gt;
sb heavy_solar_panel_hash Vertical 0&lt;br /&gt;
# Park solar panels horizontally facing sunrise&lt;br /&gt;
sb solar_panel_hash Horizontal -90&lt;br /&gt;
sb heavy_solar_panel_hash Horizontal -90&lt;br /&gt;
# Wait 10 seconds&lt;br /&gt;
sleep 10&lt;br /&gt;
# Go to start again&lt;br /&gt;
j start&lt;br /&gt;
&lt;br /&gt;
### End Script ###&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
===Example experiment: how many lines of code are executed each tick?===&lt;br /&gt;
To determine this, a script without &amp;lt;code&amp;gt;yield&amp;lt;/code&amp;gt; will be used. It should have as few lines as possible (so no labels are used, but a reset value at the top will be needed) and count the number of lines, the IC Housing will be used to display the result.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
move r0 1   #the first line has number 0&lt;br /&gt;
add r0 r0 3&lt;br /&gt;
s db Setting r0&lt;br /&gt;
j 1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Result (the numbers appears every 0.5 seconds):&lt;br /&gt;
&amp;lt;br&amp;gt;127&lt;br /&gt;
&amp;lt;br&amp;gt;256 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;385 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;511 (+126)&lt;br /&gt;
&amp;lt;br&amp;gt;640 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;769 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;895 (+126)&lt;br /&gt;
&amp;lt;br&amp;gt;1024 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;1153 (+129)&lt;br /&gt;
&lt;br /&gt;
There is a repeating +129, +129, +126 sequence, a hint that the real value is 128. Which also happens to be the number of lines in a script, which makes sense. A variation of this experiment will show that empty rows are also counted towards this number.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Links=&lt;br /&gt;
----&lt;br /&gt;
* [https://stationeering.com/tools/ic] Stationeering.com offers a programmable circuits simulator so you can develop your code without repeatedly dying in game!&lt;br /&gt;
* [https://hastebin.com/uwuhidozun.md]&lt;br /&gt;
* [http://www.easy68k.com/]&lt;br /&gt;
* [https://pastebin.com/6Uw1KSRN] syntax highlighting for IC10 MIPS for KDE kwrite/kate text editor&lt;br /&gt;
* [https://drive.google.com/file/d/1yEsJ-u94OkuMQ8K6fY7Ja1HNpLcAdjo_/view] syntax highlighting for IC10 MIPS for Notepad++&lt;br /&gt;
* [https://pastebin.com/3kmGy0NN] syntax highlighting for IC10 MIPS for Notepad++ (updated: 05/05/2021)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Index=&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|+Functions &lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
*[[#abs|abs]]&lt;br /&gt;
*[[#add|add]]&lt;br /&gt;
*[[#alias|alias]]&lt;br /&gt;
*[[#and|and]]&lt;br /&gt;
*[[#beq|beq]]&lt;br /&gt;
*[[#bgez|bgez]]&lt;br /&gt;
*[[#bgtz|bgtz]]&lt;br /&gt;
*[[#blez|blez]]&lt;br /&gt;
*[[#bltz|bltz]]&lt;br /&gt;
*[[#bne|bne]]&lt;br /&gt;
*[[#breq|breq]]&lt;br /&gt;
*[[#brgez|brgez]]&lt;br /&gt;
*[[#brgtz|brgtz]]&lt;br /&gt;
*[[#brlez|brlez]]&lt;br /&gt;
*[[#brltz|brltz]]&lt;br /&gt;
*[[#brne|brne]]&lt;br /&gt;
*[[#ceil|cell]]&lt;br /&gt;
*[[#div|div]]&lt;br /&gt;
*[[#exp|exp]]&lt;br /&gt;
*[[#floor|floor]]&lt;br /&gt;
*[[#j|j]]&lt;br /&gt;
*[[#jr|jr]]&lt;br /&gt;
*[[#l|l]]&lt;br /&gt;
*[[#log|log]]&lt;br /&gt;
*[[#ls|ls]]&lt;br /&gt;
*[[#max|max]]&lt;br /&gt;
*[[#min|min]]&lt;br /&gt;
*[[#mod|mod]]&lt;br /&gt;
*[[#move|move]]&lt;br /&gt;
*[[#mul|mul]]&lt;br /&gt;
*[[#nor|nor]]&lt;br /&gt;
*[[#or|or]]&lt;br /&gt;
*[[#rand|rand]]&lt;br /&gt;
*[[#round|round]]&lt;br /&gt;
*[[#s|s]]&lt;br /&gt;
*[[#slt|slt]]&lt;br /&gt;
*[[#sqrt|sqrt]]&lt;br /&gt;
*[[#sub|sub]]&lt;br /&gt;
*[[#trunc|trunc]]&lt;br /&gt;
*[[#xor|xor]]xor&lt;br /&gt;
*[[#yield|yield]]&lt;br /&gt;
*[[##|#]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|+Device Variables &lt;br /&gt;
&amp;lt;div  class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
*[[#Activate|Activate]]&lt;br /&gt;
*[[#AirRelease|AirRelease]]&lt;br /&gt;
*[[#Charge|Charge]]&lt;br /&gt;
*[[#CLearMemory|CLearMemory]]&lt;br /&gt;
*[[#Color|Color]]&lt;br /&gt;
*[[#CompletionRatio|CompletionRatio]]&lt;br /&gt;
*[[#ElevatorLevel|ElevatorLevel]]&lt;br /&gt;
*[[#ElevatorSpeed|ElevatorSpeed]]&lt;br /&gt;
*[[#Error|Error]]&lt;br /&gt;
*[[#ExportCount|ExportCount]]&lt;br /&gt;
*[[#Filtration|Filtration]]&lt;br /&gt;
*[[#Harvest|Harvest]]&lt;br /&gt;
*[[#Horizontal|Horizontal]]&lt;br /&gt;
*[[#HorizontalRatio|HorizontalRatio]]&lt;br /&gt;
*[[#Idle|Idle]]&lt;br /&gt;
*[[#ImportCount|ImportCount]]&lt;br /&gt;
*[[#Lock|Lock]]&lt;br /&gt;
*[[#Maximum|Maximum]]&lt;br /&gt;
*[[#Mode|Mode]]&lt;br /&gt;
*[[#On|On]]&lt;br /&gt;
*[[#Open|Open]]&lt;br /&gt;
*[[#Output|Output]]&lt;br /&gt;
*[[#Plant|Plant]]&lt;br /&gt;
*[[#PositionX|PositionX]]&lt;br /&gt;
*[[#PositionY|PositionY]]&lt;br /&gt;
*[[#PositionZ|PositionZ]]&lt;br /&gt;
*[[#Power|Power]]&lt;br /&gt;
*[[#PowerActual|PowerActual]]&lt;br /&gt;
*[[#PowerPotential|PowerPotential]]&lt;br /&gt;
*[[#PowerRequired|PowerRequired]]&lt;br /&gt;
*[[#Pressure|Pressure]]&lt;br /&gt;
*[[#PressureExternal|PressureExternal]]&lt;br /&gt;
*[[#PressureInteral|PressureInteral]]&lt;br /&gt;
*[[#PressureSetting|PressureSetting]]&lt;br /&gt;
*[[#Quantity|Quantity]]&lt;br /&gt;
*[[#Ratio|Ratio]]&lt;br /&gt;
*[[#RatioCarbonDioxide|RatioCarbonDioxide]]&lt;br /&gt;
*[[#RatioNitrogen|RatioNitrogen]]&lt;br /&gt;
*[[#RatioOxygen|RatioOxygen]]&lt;br /&gt;
*[[#RatioPollutant|RatioPollutant]]&lt;br /&gt;
*[[#RatioVolatiles|RatioVolatiles]]&lt;br /&gt;
*[[#RatioWater|RatioWater]]&lt;br /&gt;
*[[#Reagents|Reagents]]&lt;br /&gt;
*[[#RecipeHash|RecipeHash]]&lt;br /&gt;
*[[#RequestHash|RequestHash]]&lt;br /&gt;
*[[#RequiredPower|RequiredPower]]&lt;br /&gt;
*[[#Setting|Setting]]&lt;br /&gt;
*[[#SolarAngle|SolarAngle]]&lt;br /&gt;
*[[#Temperature|Temperature]]&lt;br /&gt;
*[[#TemperatureSettings|TemperatureSettings]]&lt;br /&gt;
*[[#TotalMoles|TotalMoles]]&lt;br /&gt;
*[[#VelocityMagnitude|VelocityMagnitude]]&lt;br /&gt;
*[[#VelocityRelativeX|VelocityRelativeX]]&lt;br /&gt;
*[[#VelocityRelativeY|VelocityRelativeY]]&lt;br /&gt;
*[[#VelocityRelativeZ|VelocityRelativeZ]]&lt;br /&gt;
*[[#Vertical|Vertical]]&lt;br /&gt;
*[[#VerticalRatio|VerticalRatio]]&lt;br /&gt;
*[[#Volume|Volume]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|+Slot Variables &lt;br /&gt;
&amp;lt;div  class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
*[[#Occupied|Occupied]]&lt;br /&gt;
*[[#OccupantHash|OccupantHash]]&lt;br /&gt;
*[[#Quantity|Quantity]]&lt;br /&gt;
*[[#Damage|Damage]]&lt;br /&gt;
*[[#Efficiency|Efficiency]]&lt;br /&gt;
*[[#Health|Health]]&lt;br /&gt;
*[[#Growth|Growth]]&lt;br /&gt;
*[[#Pressure|Pressure]]&lt;br /&gt;
*[[#Temperature|Temperature]]&lt;br /&gt;
*[[#Charge|Charge]]&lt;br /&gt;
*[[#ChargeRatio|ChargeRatio]]&lt;br /&gt;
*[[#Class|Class]]&lt;br /&gt;
*[[#PressureWaste|PressureWaste]]&lt;br /&gt;
*[[#PressureAir|PressureAir]]&lt;br /&gt;
*[[#MaxQuantity|MaxQuantity]]&lt;br /&gt;
*[[#Mature|Mature]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=IC10&amp;diff=11363</id>
		<title>IC10</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=IC10&amp;diff=11363"/>
		<updated>2021-12-09T13:07:09Z</updated>

		<summary type="html">&lt;p&gt;Wark: added a &amp;quot;learning MIPS&amp;quot; section to help the beginners, a short list of commonly used instructions so they can start writing scripts asap&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:MIPS Programming]]&lt;br /&gt;
=MIPS scripting language for IC10 housings / chips=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Text after a # will be ignored to the end of the line. The amount of white&lt;br /&gt;
# space between arguments isn&#039;t important, but new lines start a new command.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Registers==&lt;br /&gt;
The IC contains 16 registers, numbered r0-r15. Think of these as variables in other programming languages. In fact, you can name them with the alias command (see below).&lt;br /&gt;
&lt;br /&gt;
To set a register directly (such as r0=2), use the &amp;lt;b&amp;gt;move&amp;lt;/b&amp;gt; command. To read a value from a device, use l (load). To write a value back to a device, use s (set). Note that&lt;br /&gt;
like most machine languages, the &amp;lt;i&amp;gt;destination&amp;lt;/i&amp;gt; goes first, so instructions always look like: action destination source.&lt;br /&gt;
&lt;br /&gt;
There are two more registers. One called ra (return address) and one called sp (stack pointer). The ra is used by certain jump and branching instructions (those ending with -al) to remember which line in the script it should return to. The sp tracks the next index within the stack (a memory that can store up to 512 values) to be pushed (written) to or popped (read) from. Neither ra or sp is protected, their values can be changed by instructions like any other register.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 10&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Sets r0 to the value 10&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 r1&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Copies the value of r1 to r0&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r0 d0 Temperature&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Reads the Temperature parameter from device 0 and places the value in r0 (not all devices have a Temperature parameter, check the in-game stationpedia)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s d0 On r0&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Writes the value from register 0 out to On parameter of device 0 (if r0 equals 0 the device will turn off, if r0 equals 1 it will turn on)&lt;br /&gt;
&lt;br /&gt;
==Device Ports==&lt;br /&gt;
ICs can interact with up to 6 other devices via d0 - d5, as well as the device it&#039;s attached to via db. To change or set a device, use a screwdriver and adjust the device in the IC housing. You can read or set any of the device&#039;s properties, so it is possible to do things like read the pressure and oxygen content of a room on the same Device port. &lt;br /&gt;
&lt;br /&gt;
The l (load) and s (set) instructions let you read and set values on a device.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r0 d0 Temperature&amp;lt;/code&amp;gt; #Reads the temperature from an atmosphere sensor into r0.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s d1 Setting r0 &amp;lt;/code&amp;gt; # Writes r0 to the device on port 1 to the Setting variable.&lt;br /&gt;
&lt;br /&gt;
==Labels==&lt;br /&gt;
Lables are used to make it easier to jump between lines in the script. The label will have a numerical value that is the same as its line number. Even though it&#039;s possible to use a labels value for calculations, doing so is a bad idea since any changes to the code can change the line numbers of the labels.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;main:&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;j main&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Constants==&lt;br /&gt;
Instead of using a register to store a fixed value, a constant can be made. Using this name will refer to the assigned value.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;define pi 3.14159&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move r0 pi&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Indirect referencing==&lt;br /&gt;
This is a way of accessing a register by using another register as a pointer. Adding an additional r infront of the register turns on this behaviour. The value stored in the register being used as the pointer must be between 0 to 15, this will then point to a register from r0 to r15, higher or lower values will cause an error.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 5&amp;lt;/code&amp;gt; stores the value 5 in r0&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move rr0 10&amp;lt;/code&amp;gt; is now the same as &amp;lt;code&amp;gt;move r5 10&amp;lt;/code&amp;gt; since r0 has the value 5, rr0 points at the register r5&lt;br /&gt;
&lt;br /&gt;
Additional r&#039;s can be added to do indirect referencing multiple times in a row.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move r1 2&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move r2 3&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move rrr1 4&amp;lt;/code&amp;gt; is now the same as &amp;lt;code&amp;gt;move r3 4&amp;lt;/code&amp;gt; since r1 points at r2 which points at r3&lt;br /&gt;
&lt;br /&gt;
This also works with devices&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move r0 2&amp;lt;/code&amp;gt; stores the value 2 in r0&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;s dr0 On 1&amp;lt;/code&amp;gt; is now the same as &amp;lt;code&amp;gt;s d2 On 1&amp;lt;/code&amp;gt;, r0 has the value 2 so dr0 points at d2&lt;br /&gt;
&lt;br /&gt;
==Debugging advice==&lt;br /&gt;
The value stored in a register can easily be seen by writing it to the Setting parameter of the IC housing, this has no sideeffects, too see the value just stand close and look directly at the housing (&amp;lt;code&amp;gt;s db Setting r0&amp;lt;/code&amp;gt;).&lt;br /&gt;
&amp;lt;br&amp;gt;To check if a certain block of code is executed, use the above trick but with a number that you choose, like the line number (&amp;lt;code&amp;gt;s db Setting 137&amp;lt;/code&amp;gt;).&lt;br /&gt;
&amp;lt;br&amp;gt;The configuration card can be used to manually check the data values stored in all connected devices.&lt;br /&gt;
&lt;br /&gt;
==Learning MIPS==&lt;br /&gt;
MIPS can be difficult to get started with. So here is a list of instructions that are useful for beginners. These can be used to write many different scripts.&lt;br /&gt;
&lt;br /&gt;
General:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
alias (make the script easier to read by assigning a name to a register or device)&lt;br /&gt;
label: (where &amp;quot;label&amp;quot; can be replaced with almost any word, jump and branch instructions will go to these)&lt;br /&gt;
yield (pause for 1-tick and then resume, if not used the script will automatically pause for 1-tick every 128 lines)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Jumps:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
j label&lt;br /&gt;
jal label (stores the next line number into the &amp;quot;return address&amp;quot;-register and then jump to label)&lt;br /&gt;
j ra (jump to the &amp;quot;return address&amp;quot;)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Branching (jump-if):&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
beq (branch if equal)&lt;br /&gt;
bne (branch if not-equal)&lt;br /&gt;
bgt (branch if greater than)&lt;br /&gt;
blt (branch if less than)&lt;br /&gt;
The suffix -al can be added to each of these (example: beqal) to save the next line number into the &amp;quot;return address&amp;quot; register&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Device interactions:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
l (load)&lt;br /&gt;
lb (load batch, requires one of the following: Average / Sum / Minimum / Maximum)&lt;br /&gt;
ls (load slot)&lt;br /&gt;
s (store)&lt;br /&gt;
sb (store batch)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Logic and Math:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
seqz (common NOT-gate: turns 0 into 1, and all other values into 0)&lt;br /&gt;
move&lt;br /&gt;
add (addition)&lt;br /&gt;
sub (subtraction)&lt;br /&gt;
mul (multiplication)&lt;br /&gt;
div (division)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Common device variables:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
On (1 is on, 0 is off)&lt;br /&gt;
Open (1 is open, 0 is closed)&lt;br /&gt;
Setting (meaning varies between devices, example: a LED display(console) will show this value)&lt;br /&gt;
Activate (1 usually means running, example: a Daylight sensor is 1 when the sun shines on it)&lt;br /&gt;
Temperature (in Kelvin, Celsius + 273.15)&lt;br /&gt;
Pressure (in kPa)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;Notes:&lt;br /&gt;
&amp;lt;br&amp;gt;-All instructions and variables can be seen in-game in the MIPS editor window by clicking the &amp;quot;f&amp;quot;, &amp;quot;x&amp;quot; and &amp;quot;s(x)&amp;quot; buttons on the top right.&lt;br /&gt;
&amp;lt;br&amp;gt;-The stationpedia is the best source to see which variables are available to each device.&lt;br /&gt;
&amp;lt;br&amp;gt;-Most scripts are loops, they end with a jump instruction that leads back up to the start. Otherwise they will just run once and then stop.&lt;br /&gt;
&lt;br /&gt;
Two practice scripts:&lt;br /&gt;
&amp;lt;br&amp;gt;Automatic Night Light: Load &amp;quot;Activate&amp;quot; from a Daylight sensor, flip the value with a NOT-gate, store the value to the &amp;quot;On&amp;quot; variable in one or more lights.&lt;br /&gt;
&amp;lt;br&amp;gt;Automatic Wall Cooler: Read &amp;quot;Temperature&amp;quot; from a Gas Sensor. Branch if the value is greater than X, turn on the cooler. Branch if the value is less than Y, turn off the cooler.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Instructions=&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;alias&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;alias&lt;br /&gt;
:alias str r? d? # labels register or device reference with name.  When alias is applied to a device, it will affect what shows on the screws in the IC base.  (housing)&lt;br /&gt;
&amp;lt;code&amp;gt;alias vTemperature r0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;alias dAutoHydro1 d0&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;move&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;move    &lt;br /&gt;
:d s     # stores the value of s in d&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 42 # Store 42 in register 0&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;l&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;load&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;l (load)&lt;br /&gt;
:l r# d# parameter&lt;br /&gt;
Reads from a device (d#) and stores the value in a register (r#)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r0 d0 Setting&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Read from the device on d0 into register 0&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r1 d5 Pressure&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Read the pressure from a sensor&lt;br /&gt;
&lt;br /&gt;
This also works with aliases. For example:&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
alias Sensor d0 &amp;lt;br/&amp;gt;&lt;br /&gt;
l r0 Sensor Temperature&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;ls&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;load slot&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ls (load slot)&lt;br /&gt;
:ls r# d# slotNum parameter&lt;br /&gt;
Reads from a slot (slotNum) of a device (d#)  and stores the value in a register (r#)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;ls r0 d0 2 Occupied&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Read from the second slot of device on d0, stores 1 in r0 if it&#039;s occupied, 0 otherwise.&lt;br /&gt;
&lt;br /&gt;
And here is the code to read the charge of an AIMeE:&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
alias robot d0 &amp;lt;br/&amp;gt;&lt;br /&gt;
alias charge r0 &amp;lt;br/&amp;gt;&lt;br /&gt;
ls charge robot 0 Charge &lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;s&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;set&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;s (set)&lt;br /&gt;
:s d# parameter r#&lt;br /&gt;
Writes a setting to a device. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s d0 Setting r0&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;add&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;add     &lt;br /&gt;
:d s t   # calculates s + t and stores the result in d&lt;br /&gt;
&amp;lt;code&amp;gt;add r0 r1 1 # add 1 to r1 and store the result as r0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;add r0 r0 1 # increment r0 by one&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;sub&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;sub     &lt;br /&gt;
:d s t   # calculates s - t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;mul&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;mul     &lt;br /&gt;
:d s t   # calculates s * t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;div&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;div     &lt;br /&gt;
:d s t   # calculates s / t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;mod&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;mod     &lt;br /&gt;
:d s t   &lt;br /&gt;
::# calculates s mod t and stores the result in d. Note this&lt;br /&gt;
::# doesn&#039;t behave like the % operator - the result will be &lt;br /&gt;
::# positive even if the either of the operands are negative&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;slt&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;slt     &lt;br /&gt;
:d s t   # stores 1 in d if s &amp;lt; t, 0 otherwise&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;sqrt&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;sqrt    &lt;br /&gt;
:d s     # calculates sqrt(s) and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;round&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;round   &lt;br /&gt;
:d s     # finds the rounded value of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;trunc&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;trunc   &lt;br /&gt;
:d s     # finds the truncated value of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;ceil&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ceil   &lt;br /&gt;
: d s     # calculates the ceiling of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;floor&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;floor  &lt;br /&gt;
: d s     # calculates the floor of s and stores the result in d&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;max&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;max    &lt;br /&gt;
: d s t   # calculates the maximum of s and t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;min&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;min    &lt;br /&gt;
: d s t   # calculates the minimum of s and t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;abs&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;abs    &lt;br /&gt;
: d s     # calculates the absolute value of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;log&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;log    &lt;br /&gt;
: d s     # calculates the natural logarithm of s and stores the result&lt;br /&gt;
::# in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;exp&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;exp    &lt;br /&gt;
: d s     # calculates the exponential of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;rand&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;rand   &lt;br /&gt;
: d       # selects a random number uniformly at random between 0 and 1&lt;br /&gt;
::# inclusive and stores the result in d&lt;br /&gt;
&lt;br /&gt;
::# boolean arithmetic uses the C convention that 0 is false and any non-zero&lt;br /&gt;
::# value is true.&lt;br /&gt;
&amp;lt;div id=&amp;quot;and&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;and    &lt;br /&gt;
: d s t   # stores 1 in d if both s and t have non-zero values,&lt;br /&gt;
::# 0 otherwise&lt;br /&gt;
&amp;lt;div id=&amp;quot;or&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;or     &lt;br /&gt;
: d s t   # stores 1 in d if either s or t have non-zero values,&lt;br /&gt;
::# 0 otherwise&lt;br /&gt;
&amp;lt;div id=&amp;quot;xor&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;xor    &lt;br /&gt;
: d s t   # stores 1 in d if exactly one of s and t are non-zero,&lt;br /&gt;
::# 0 otherwise&lt;br /&gt;
&amp;lt;div id=&amp;quot;nor&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;nor &lt;br /&gt;
:    d s t   # stores 1 in d if both s and t equal zero, 0 otherwise&lt;br /&gt;
::# Lines are numbered starting at zero&lt;br /&gt;
&amp;lt;div id=&amp;quot;j&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;j&lt;br /&gt;
:             a # jumps to line a.&lt;br /&gt;
&amp;lt;div id=&amp;quot;bltz&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bltz&lt;br /&gt;
:      s   a # jumps to line a if s &amp;lt;  0&lt;br /&gt;
&amp;lt;div id=&amp;quot;blez&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;blez &lt;br /&gt;
:     s   a # jumps to line a if s &amp;lt;= 0&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;bgez&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bgez &lt;br /&gt;
:     s   a # jumps to line a if s &amp;gt;= 0&lt;br /&gt;
&amp;lt;div id=&amp;quot;bgtz&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bgtz&lt;br /&gt;
:      s   a # jumps to line a if s &amp;gt;  0&lt;br /&gt;
&amp;lt;div id=&amp;quot;beq&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;beq &lt;br /&gt;
:      s t a # jumps to line a if s == t&lt;br /&gt;
&amp;lt;div id=&amp;quot;bne&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bne &lt;br /&gt;
:      s t a # jumps to line a if s != t&lt;br /&gt;
&amp;lt;div id=&amp;quot;bdseal&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bdseal&lt;br /&gt;
:    d? a(r?|num) # Jump execution to line a and store current line number if device d? is set.&lt;br /&gt;
&amp;lt;code&amp;gt;bdseal d0 32 #Store line number and jump to line 32 if d0 is assigned.&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;BR&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;bdseal dThisVictim HarvestCrop #Store line in ra and jump to sub HarvestCrop if device dThisVictim is assigned.&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;yield&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;yield           &lt;br /&gt;
: 	# ceases code execution for this power tick&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;lb&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;lb&lt;br /&gt;
:      r? typeHash var batchMode # Loads var from all output network devices with provided typeHash  using provided batchMode: Average(0), Sum (1), Minimum (2), Maximum (3). Can be used word or number. Result store into r?&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;sb&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;sb&lt;br /&gt;
:      typeHash var r? # Store register r? to var on all output network devices with provided typeHash&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
; #&lt;br /&gt;
:     # The following text will be ignored during compiling; use this to create comments.&lt;br /&gt;
&lt;br /&gt;
[https://www.cs.tufts.edu/comp/140/lectures/Day_3/mips_summary.pdf Other examples]&lt;br /&gt;
&lt;br /&gt;
== Conditional functions cheatsheet ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! suffix !! description !! branch to line !! branch and store return address !! relative jump to line !! set register&lt;br /&gt;
|-&lt;br /&gt;
| prefix: ||  || b- || b-al || br- || s-&lt;br /&gt;
|-&lt;br /&gt;
|  || unconditional || j    || jal    || jr    || &lt;br /&gt;
|-&lt;br /&gt;
| -eq  || if a == b || beq  || beqal  || breq  || seq&lt;br /&gt;
|-&lt;br /&gt;
| -eqz || if a == 0 || beqz || beqzal || breqz || seqz&lt;br /&gt;
|-&lt;br /&gt;
| -ge  || if a &amp;gt;= b || bge  || bgeal  || brge  || sge&lt;br /&gt;
|-&lt;br /&gt;
| -gez || if a &amp;gt;= 0 || bgez || bgezal || brgez || sgez&lt;br /&gt;
|-&lt;br /&gt;
| -gt  || if a &amp;gt; b  || bgt  || bgtal  || brgt  || sgt&lt;br /&gt;
|-&lt;br /&gt;
| -gtz || if a &amp;gt; 0  || bgtz || bgtzal || brgtz || sgtz&lt;br /&gt;
|-&lt;br /&gt;
| -le  || if a &amp;lt;= b || ble  || bleal  || brle  || sle&lt;br /&gt;
|-&lt;br /&gt;
| -lez || if a &amp;lt;= 0 || blez || blezal || brlez || slez&lt;br /&gt;
|-&lt;br /&gt;
| -lt  || if a &amp;lt; b  || blt  || bltal  || brlt  || slt&lt;br /&gt;
|-&lt;br /&gt;
| -ltz || if a &amp;lt; 0  || bltz || bltzal || brltz || sltz&lt;br /&gt;
|-&lt;br /&gt;
| -ne  || if a != b || bne  || bneal  || brne  || sne&lt;br /&gt;
|-&lt;br /&gt;
| -nez || if a != 0 || bnez || bnezal || brnez || snez&lt;br /&gt;
|-&lt;br /&gt;
| -dns || if device d is not set          || bdns || bdnsal || brdns || sdns&lt;br /&gt;
|-&lt;br /&gt;
| -dse || if device d is set              || bdse || bdseal || brdse || sdse&lt;br /&gt;
|-&lt;br /&gt;
| -ap  || if a approximately equals b     || bap  || bapal  || brap  || sap&lt;br /&gt;
|-&lt;br /&gt;
| -apz || if a approximately equals 0     || bapz || bapzal || brapz || sapz&lt;br /&gt;
|-&lt;br /&gt;
| -na  || if a not approximately equals b || bna  || bnaal  || brna  || sna&lt;br /&gt;
|-&lt;br /&gt;
| -naz || if a not approximately equals 0 || bnaz || bnazal || brnaz || snaz&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
All &amp;lt;code&amp;gt;b-&amp;lt;/code&amp;gt; commands require target line as last argument, all &amp;lt;code&amp;gt;s-&amp;lt;/code&amp;gt; commands require register to store result as first argument. All &amp;lt;code&amp;gt;br-&amp;lt;/code&amp;gt; commands require number to jump relatively as last argument. e.g. &amp;lt;code&amp;gt;breq a b 3&amp;lt;/code&amp;gt; means if a=b then jump to 3 lines after.&lt;br /&gt;
&lt;br /&gt;
All approximate functions require additional argument denoting how close two numbers need to be considered equal. E.g.: &amp;lt;code&amp;gt;sap r0 100 101 0.01&amp;lt;/code&amp;gt; will consider 100 and 101 almost equal (not more than 1%=0.01 different) and will set r0 to 1. The exact formula is &amp;lt;code&amp;gt;if abs(a - b) &amp;lt;= max(c * max(abs(a), abs(b)), float.epsilon * 8)&amp;lt;/code&amp;gt; for &amp;lt;code&amp;gt;-ap&amp;lt;/code&amp;gt; and is similar for other approximate functions.&lt;br /&gt;
&lt;br /&gt;
==Device Variables==&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Activate&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Activate&lt;br /&gt;
:1 if device is activated (usually means running), otherwise 0&lt;br /&gt;
:&amp;lt;code&amp;gt;l r0 d0 Activate # sets r0 to 1 if on or 0 if off&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;AirRelease&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;AirRelease&lt;br /&gt;
&amp;lt;div id=&amp;quot;Charge&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Charge&lt;br /&gt;
:    The current charge the device has.&lt;br /&gt;
&amp;lt;div id=&amp;quot;CLearMemory&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;CLearMemory&lt;br /&gt;
:    When set to 1, clears the counter memory (e.g. ExportCount).  Will set itself back to 0 when triggered.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Color&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Color&lt;br /&gt;
:    0 (or lower) = Blue&lt;br /&gt;
:    1 = Grey&lt;br /&gt;
:    2 = Green&lt;br /&gt;
:    3 = Orange&lt;br /&gt;
:    4 = Red&lt;br /&gt;
:    5 = Yellow&lt;br /&gt;
:    6 = White&lt;br /&gt;
:    7 = Black&lt;br /&gt;
:    8 = Brown&lt;br /&gt;
:    9 = Khaki&lt;br /&gt;
:    10 = Pink&lt;br /&gt;
:    11 (or higher) = Purple&lt;br /&gt;
&amp;lt;div id=&amp;quot;CompletionRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;CompletionRatio&lt;br /&gt;
&amp;lt;div id=&amp;quot;ElevatorLevel&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ElevatorLevel&lt;br /&gt;
&amp;lt;div id=&amp;quot;ElevatorSpeed&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ElevatorSpeed&lt;br /&gt;
&amp;lt;div id=&amp;quot;Error&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Error&lt;br /&gt;
:	1 if device is in error state, otherwise 0&lt;br /&gt;
&amp;lt;div id=&amp;quot;ExportCount&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ExportCount&lt;br /&gt;
:    How many items exporfted since last ClearMemory.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Filtration&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Filtration&lt;br /&gt;
:	The current state of the filtration system.  For example filtration = 1 for a Hardsuit when filtration is On.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Harvest&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Harvest&lt;br /&gt;
:	Performs the harvesting action for any plant based machinery.&lt;br /&gt;
:  &amp;lt;code&amp;gt;s d0 Harvest 1 # Performs 1 harvest action on device d0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;Horizontal&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Horizontal&lt;br /&gt;
&amp;lt;div id=&amp;quot;HorizontalRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;HorizontalRatio&lt;br /&gt;
&amp;lt;div id=&amp;quot;Idle&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Idle&lt;br /&gt;
&amp;lt;div id=&amp;quot;ImportCount&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ImportCount&lt;br /&gt;
&amp;lt;div id=&amp;quot;Lock&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Lock&lt;br /&gt;
&amp;lt;div id=&amp;quot;Maximum&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Maximum&lt;br /&gt;
&amp;lt;div id=&amp;quot;Mode&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Mode&lt;br /&gt;
&amp;lt;div id=&amp;quot;On&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;On&lt;br /&gt;
&amp;lt;div id=&amp;quot;Open&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Open&lt;br /&gt;
&amp;lt;div id=&amp;quot;Output&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Output&lt;br /&gt;
&amp;lt;div id=&amp;quot;Plant&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Plant&lt;br /&gt;
:    Performs the planting operation for any plant based machinery.&lt;br /&gt;
:  &amp;lt;code&amp;gt;s d0 Plant 1 # Plants one crop in device d0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;PositionX&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PositionX&lt;br /&gt;
&amp;lt;div id=&amp;quot;PositionY&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PositionY&lt;br /&gt;
&amp;lt;div id=&amp;quot;PositionZ&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PositionZ&lt;br /&gt;
&amp;lt;div id=&amp;quot;Power&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Power&lt;br /&gt;
&amp;lt;div id=&amp;quot;PowerActual&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PowerActual&lt;br /&gt;
&amp;lt;div id=&amp;quot;PowerPotential&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PowerPotential&lt;br /&gt;
&amp;lt;div id=&amp;quot;PowerRequired&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PowerRequired&lt;br /&gt;
&amp;lt;div id=&amp;quot;Pressure&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Pressure&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureExternal&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureExternal&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureInteral&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureInteral&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureSetting&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureSetting&lt;br /&gt;
&amp;lt;div id=&amp;quot;Quantity&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Quantity&lt;br /&gt;
:	Total quantity in the device.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Ratio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Ratio&lt;br /&gt;
:	Context specific value depending on device, 0 to 1 based ratio.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioCarbonDioxide&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioCarbonDioxide&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioNitrogen&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioNitrogen&lt;br /&gt;
:	The ratio of nitrogen in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioOxygen&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioOxygen&lt;br /&gt;
:	The ratio of oxygen in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioPollutant&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioPollutant&lt;br /&gt;
:	The ratio of pollutant in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioVolatiles&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioVolatiles&lt;br /&gt;
:	The ratio of volatiles in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioWater&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioWater&lt;br /&gt;
:	The ratio of water in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Reagents&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Reagents&lt;br /&gt;
&amp;lt;div id=&amp;quot;RecipeHash&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RecipeHash&lt;br /&gt;
&amp;lt;div id=&amp;quot;RequestHash&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RequestHash&lt;br /&gt;
&amp;lt;div id=&amp;quot;RequiredPower&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RequiredPower&lt;br /&gt;
&amp;lt;div id=&amp;quot;Setting&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Setting&lt;br /&gt;
&amp;lt;div id=&amp;quot;SolarAngle&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;SolarAngle&lt;br /&gt;
:    Solar angle of the device.&lt;br /&gt;
:  &amp;lt;code&amp;gt;l r0 d0 SolarAngle # Sets r0 to the solar angle of d0.&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;Temperature&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Temperature&lt;br /&gt;
&amp;lt;div id=&amp;quot;TemperatureSettings&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;TemperatureSettings&lt;br /&gt;
&amp;lt;div id=&amp;quot;TotalMoles&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;TotalMoles&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityMagnitude&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityMagnitude&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityRelativeX&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityRelativeX&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityRelativeY&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityRelativeY&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityRelativeZ&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityRelativeZ&lt;br /&gt;
&amp;lt;div id=&amp;quot;Vertical&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Vertical&lt;br /&gt;
:	Vertical setting of the device.&lt;br /&gt;
&amp;lt;div id=&amp;quot;VerticalRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VerticalRatio&lt;br /&gt;
:	Ratio of vertical setting for device.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Volume&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Volume&lt;br /&gt;
:	Returns the device atmosphere volume&lt;br /&gt;
&lt;br /&gt;
==Slot Variables==&lt;br /&gt;
In general (always?) slots are assigned as follows.&lt;br /&gt;
:Slot 0: Import&lt;br /&gt;
:Slot 1: Export&lt;br /&gt;
:Slot 2: Inside Machine&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Occupied&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Occupied&lt;br /&gt;
:&amp;lt;code&amp;gt;ls r0 d0 2 Occupied #Stores 1 in r0 if d0 has more seeds&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;ls vOccupied dThisVictim 2 Occupied #stores 1 in vOccupied if dThisVictim has more seeds&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;OccupantHash&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;OccupantHash&lt;br /&gt;
&amp;lt;div id=&amp;quot;Quantity&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Quantity&lt;br /&gt;
&amp;lt;div id=&amp;quot;Damage&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Damage&lt;br /&gt;
&amp;lt;div id=&amp;quot;Efficiency&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Efficiency&lt;br /&gt;
&amp;lt;div id=&amp;quot;Health&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Health&lt;br /&gt;
&amp;lt;div id=&amp;quot;Growth&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Growth&lt;br /&gt;
:&amp;lt;code&amp;gt;ls r0 d0 0 Growth # Store the numerical growth stage of d0 in r0&amp;lt;/code&amp;gt; &lt;br /&gt;
&amp;lt;div id=&amp;quot;Pressure&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Pressure&lt;br /&gt;
&amp;lt;div id=&amp;quot;Temperature&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Temperature&lt;br /&gt;
&amp;lt;div id=&amp;quot;Charge&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Charge&lt;br /&gt;
&amp;lt;div id=&amp;quot;ChargeRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ChargeRatio&lt;br /&gt;
&amp;lt;div id=&amp;quot;Class&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Class&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureWaste&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureWaste&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureAir&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureAir&lt;br /&gt;
&amp;lt;div id=&amp;quot;MaxQuantity&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;MaxQuantity&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Mature&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Mature&lt;br /&gt;
:&amp;lt;code&amp;gt;ls r0 d0 0 Mature # Store 1 in r0 if d0 has a mature crop&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;ls vMature dThisVictim 0 Mature # Store 1 in vMature if dThisVictim has a mature crop&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Examples=&lt;br /&gt;
Previous examples were obsolete due to game changes, or confusing, they have been moved into the Discussions section&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Harvie automation===&lt;br /&gt;
This script uses the batch instruction &amp;lt;code&amp;gt;sb ...&amp;lt;/code&amp;gt; to control all Harvie devices on the network. But only one Harvie and one Tray will be the &#039;&#039;master&#039;&#039; and have their values read, the rest of the Harvies will repeat exactly what this unit does. Some problems with this design is that different types of crops mature at different speeds, and if seeds were manually planted and the master unit recieved the first seed, the harvesting action will be performed too early on all the other plants since they are growing a few seconds slower.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot; data-expandtext=&amp;quot;{{int:Expand, Automated Harvie Script}}&amp;quot; data-collapsetext=&amp;quot;{{int:Collapse, Automated Harvie Script}}&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
alias dHarvie d0&lt;br /&gt;
alias dTray d1&lt;br /&gt;
&lt;br /&gt;
alias rHarvieHash r8&lt;br /&gt;
alias rTrayHash r9&lt;br /&gt;
l rHarvieHash dHarvie PrefabHash&lt;br /&gt;
l rTrayHash dTray PrefabHash&lt;br /&gt;
&lt;br /&gt;
main:&lt;br /&gt;
yield&lt;br /&gt;
 #read plant data from the Tray&lt;br /&gt;
ls r0 dTray 0 Mature&lt;br /&gt;
 #harvestable plants return 1, young plants return 0&lt;br /&gt;
 #nothing planted returns -1&lt;br /&gt;
beq r0 -1 plantCrop&lt;br /&gt;
beq r0 1 harvestCrop&lt;br /&gt;
ls r0 dTray 0 Seeding&lt;br /&gt;
 #seeds available returns 1, all seeds picked returns 0&lt;br /&gt;
 #plants too young or old for seeds returns -1&lt;br /&gt;
beq r0 1 harvestCrop&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
plantCrop:&lt;br /&gt;
 #stop the planting if no seeds available&lt;br /&gt;
 #otherwise it will plant nothing repeatedly&lt;br /&gt;
ls r0 dHarvie 0 Occupied&lt;br /&gt;
beq r0 0 main&lt;br /&gt;
sb rHarvieHash Plant 1&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
harvestCrop:&lt;br /&gt;
sb rHarvieHash Harvest 1&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
### End Script ###&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
===Solar Panel 2-axis tracking===&lt;br /&gt;
This script was copied from the [[Solar_Logic_Circuits_Guide]] (code provided by bti, comments and readability changes by Fudd79)&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot; data-expandtext=&amp;quot;{{int:Expand, Solar Panel 2-axis tracking}}&amp;quot; data-collapsetext=&amp;quot;{{int:Collapse, Solar Panel 2-axis tracking}}&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# This code assumes the following:&lt;br /&gt;
# Daylight Sensor data-port points north&lt;br /&gt;
# Solar Panel data-port points east&lt;br /&gt;
&lt;br /&gt;
alias sensor d0&lt;br /&gt;
alias v_angle r0&lt;br /&gt;
alias h_angle r1&lt;br /&gt;
alias sun_up r2&lt;br /&gt;
&lt;br /&gt;
define solar_panel_hash -539224550&lt;br /&gt;
define heavy_solar_panel_hash -1545574413&lt;br /&gt;
&lt;br /&gt;
start:&lt;br /&gt;
# Check to see if sun is up&lt;br /&gt;
l sun_up sensor Activate&lt;br /&gt;
# Go to reset if it&#039;s not&lt;br /&gt;
beqz sun_up reset&lt;br /&gt;
&lt;br /&gt;
# Calculate vertical angle&lt;br /&gt;
l v_angle sensor Vertical&lt;br /&gt;
div v_angle v_angle 1.5&lt;br /&gt;
sub v_angle 50 v_angle&lt;br /&gt;
&lt;br /&gt;
# Write vertical angle to all solar panels&lt;br /&gt;
sb solar_panel_hash Vertical v_angle&lt;br /&gt;
sb heavy_solar_panel_hash Vertical v_angle&lt;br /&gt;
&lt;br /&gt;
# Obtain horizontal angle&lt;br /&gt;
l h_angle sensor Horizontal&lt;br /&gt;
&lt;br /&gt;
# Write vertical angle to all solar panels&lt;br /&gt;
sb solar_panel_hash Horizontal h_angle&lt;br /&gt;
sb heavy_solar_panel_hash Horizontal h_angle&lt;br /&gt;
&lt;br /&gt;
# Go to start again&lt;br /&gt;
yield&lt;br /&gt;
j start&lt;br /&gt;
&lt;br /&gt;
reset:&lt;br /&gt;
# Park solar panels vertically facing sunrise&lt;br /&gt;
sb solar_panel_hash Vertical 0&lt;br /&gt;
sb heavy_solar_panel_hash Vertical 0&lt;br /&gt;
# Park solar panels horizontally facing sunrise&lt;br /&gt;
sb solar_panel_hash Horizontal -90&lt;br /&gt;
sb heavy_solar_panel_hash Horizontal -90&lt;br /&gt;
# Wait 10 seconds&lt;br /&gt;
sleep 10&lt;br /&gt;
# Go to start again&lt;br /&gt;
j start&lt;br /&gt;
&lt;br /&gt;
### End Script ###&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
===Example experiment: how many lines of code are executed each tick?===&lt;br /&gt;
To determine this, a script without &amp;lt;code&amp;gt;yield&amp;lt;/code&amp;gt; will be used. It should have as few lines as possible (so no labels are used, but a reset value at the top will be needed) and count the number of lines, the IC Housing will be used to display the result.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
move r0 1   #the first line has number 0&lt;br /&gt;
add r0 r0 3&lt;br /&gt;
s db Setting r0&lt;br /&gt;
j 1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Result (the numbers appears every 0.5 seconds):&lt;br /&gt;
&amp;lt;br&amp;gt;127&lt;br /&gt;
&amp;lt;br&amp;gt;256 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;385 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;511 (+126)&lt;br /&gt;
&amp;lt;br&amp;gt;640 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;769 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;895 (+126)&lt;br /&gt;
&amp;lt;br&amp;gt;1024 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;1153 (+129)&lt;br /&gt;
&lt;br /&gt;
There is a repeating +129, +129, +126 sequence, a hint that the real value is 128. Which also happens to be the number of lines in a script, which makes sense. A variation of this experiment will show that empty rows are also counted towards this number.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Links=&lt;br /&gt;
----&lt;br /&gt;
* [https://stationeering.com/tools/ic] Stationeering.com offers a programmable circuits simulator so you can develop your code without repeatedly dying in game!&lt;br /&gt;
* [https://hastebin.com/uwuhidozun.md]&lt;br /&gt;
* [http://www.easy68k.com/]&lt;br /&gt;
* [https://pastebin.com/6Uw1KSRN] syntax highlighting for IC10 MIPS for KDE kwrite/kate text editor&lt;br /&gt;
* [https://drive.google.com/file/d/1yEsJ-u94OkuMQ8K6fY7Ja1HNpLcAdjo_/view] syntax highlighting for IC10 MIPS for Notepad++&lt;br /&gt;
* [https://pastebin.com/3kmGy0NN] syntax highlighting for IC10 MIPS for Notepad++ (updated: 05/05/2021)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Index=&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|+Functions &lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
*[[#abs|abs]]&lt;br /&gt;
*[[#add|add]]&lt;br /&gt;
*[[#alias|alias]]&lt;br /&gt;
*[[#and|and]]&lt;br /&gt;
*[[#beq|beq]]&lt;br /&gt;
*[[#bgez|bgez]]&lt;br /&gt;
*[[#bgtz|bgtz]]&lt;br /&gt;
*[[#blez|blez]]&lt;br /&gt;
*[[#bltz|bltz]]&lt;br /&gt;
*[[#bne|bne]]&lt;br /&gt;
*[[#breq|breq]]&lt;br /&gt;
*[[#brgez|brgez]]&lt;br /&gt;
*[[#brgtz|brgtz]]&lt;br /&gt;
*[[#brlez|brlez]]&lt;br /&gt;
*[[#brltz|brltz]]&lt;br /&gt;
*[[#brne|brne]]&lt;br /&gt;
*[[#ceil|cell]]&lt;br /&gt;
*[[#div|div]]&lt;br /&gt;
*[[#exp|exp]]&lt;br /&gt;
*[[#floor|floor]]&lt;br /&gt;
*[[#j|j]]&lt;br /&gt;
*[[#jr|jr]]&lt;br /&gt;
*[[#l|l]]&lt;br /&gt;
*[[#log|log]]&lt;br /&gt;
*[[#ls|ls]]&lt;br /&gt;
*[[#max|max]]&lt;br /&gt;
*[[#min|min]]&lt;br /&gt;
*[[#mod|mod]]&lt;br /&gt;
*[[#move|move]]&lt;br /&gt;
*[[#mul|mul]]&lt;br /&gt;
*[[#nor|nor]]&lt;br /&gt;
*[[#or|or]]&lt;br /&gt;
*[[#rand|rand]]&lt;br /&gt;
*[[#round|round]]&lt;br /&gt;
*[[#s|s]]&lt;br /&gt;
*[[#slt|slt]]&lt;br /&gt;
*[[#sqrt|sqrt]]&lt;br /&gt;
*[[#sub|sub]]&lt;br /&gt;
*[[#trunc|trunc]]&lt;br /&gt;
*[[#xor|xor]]xor&lt;br /&gt;
*[[#yield|yield]]&lt;br /&gt;
*[[##|#]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|+Device Variables &lt;br /&gt;
&amp;lt;div  class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
*[[#Activate|Activate]]&lt;br /&gt;
*[[#AirRelease|AirRelease]]&lt;br /&gt;
*[[#Charge|Charge]]&lt;br /&gt;
*[[#CLearMemory|CLearMemory]]&lt;br /&gt;
*[[#Color|Color]]&lt;br /&gt;
*[[#CompletionRatio|CompletionRatio]]&lt;br /&gt;
*[[#ElevatorLevel|ElevatorLevel]]&lt;br /&gt;
*[[#ElevatorSpeed|ElevatorSpeed]]&lt;br /&gt;
*[[#Error|Error]]&lt;br /&gt;
*[[#ExportCount|ExportCount]]&lt;br /&gt;
*[[#Filtration|Filtration]]&lt;br /&gt;
*[[#Harvest|Harvest]]&lt;br /&gt;
*[[#Horizontal|Horizontal]]&lt;br /&gt;
*[[#HorizontalRatio|HorizontalRatio]]&lt;br /&gt;
*[[#Idle|Idle]]&lt;br /&gt;
*[[#ImportCount|ImportCount]]&lt;br /&gt;
*[[#Lock|Lock]]&lt;br /&gt;
*[[#Maximum|Maximum]]&lt;br /&gt;
*[[#Mode|Mode]]&lt;br /&gt;
*[[#On|On]]&lt;br /&gt;
*[[#Open|Open]]&lt;br /&gt;
*[[#Output|Output]]&lt;br /&gt;
*[[#Plant|Plant]]&lt;br /&gt;
*[[#PositionX|PositionX]]&lt;br /&gt;
*[[#PositionY|PositionY]]&lt;br /&gt;
*[[#PositionZ|PositionZ]]&lt;br /&gt;
*[[#Power|Power]]&lt;br /&gt;
*[[#PowerActual|PowerActual]]&lt;br /&gt;
*[[#PowerPotential|PowerPotential]]&lt;br /&gt;
*[[#PowerRequired|PowerRequired]]&lt;br /&gt;
*[[#Pressure|Pressure]]&lt;br /&gt;
*[[#PressureExternal|PressureExternal]]&lt;br /&gt;
*[[#PressureInteral|PressureInteral]]&lt;br /&gt;
*[[#PressureSetting|PressureSetting]]&lt;br /&gt;
*[[#Quantity|Quantity]]&lt;br /&gt;
*[[#Ratio|Ratio]]&lt;br /&gt;
*[[#RatioCarbonDioxide|RatioCarbonDioxide]]&lt;br /&gt;
*[[#RatioNitrogen|RatioNitrogen]]&lt;br /&gt;
*[[#RatioOxygen|RatioOxygen]]&lt;br /&gt;
*[[#RatioPollutant|RatioPollutant]]&lt;br /&gt;
*[[#RatioVolatiles|RatioVolatiles]]&lt;br /&gt;
*[[#RatioWater|RatioWater]]&lt;br /&gt;
*[[#Reagents|Reagents]]&lt;br /&gt;
*[[#RecipeHash|RecipeHash]]&lt;br /&gt;
*[[#RequestHash|RequestHash]]&lt;br /&gt;
*[[#RequiredPower|RequiredPower]]&lt;br /&gt;
*[[#Setting|Setting]]&lt;br /&gt;
*[[#SolarAngle|SolarAngle]]&lt;br /&gt;
*[[#Temperature|Temperature]]&lt;br /&gt;
*[[#TemperatureSettings|TemperatureSettings]]&lt;br /&gt;
*[[#TotalMoles|TotalMoles]]&lt;br /&gt;
*[[#VelocityMagnitude|VelocityMagnitude]]&lt;br /&gt;
*[[#VelocityRelativeX|VelocityRelativeX]]&lt;br /&gt;
*[[#VelocityRelativeY|VelocityRelativeY]]&lt;br /&gt;
*[[#VelocityRelativeZ|VelocityRelativeZ]]&lt;br /&gt;
*[[#Vertical|Vertical]]&lt;br /&gt;
*[[#VerticalRatio|VerticalRatio]]&lt;br /&gt;
*[[#Volume|Volume]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|+Slot Variables &lt;br /&gt;
&amp;lt;div  class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
*[[#Occupied|Occupied]]&lt;br /&gt;
*[[#OccupantHash|OccupantHash]]&lt;br /&gt;
*[[#Quantity|Quantity]]&lt;br /&gt;
*[[#Damage|Damage]]&lt;br /&gt;
*[[#Efficiency|Efficiency]]&lt;br /&gt;
*[[#Health|Health]]&lt;br /&gt;
*[[#Growth|Growth]]&lt;br /&gt;
*[[#Pressure|Pressure]]&lt;br /&gt;
*[[#Temperature|Temperature]]&lt;br /&gt;
*[[#Charge|Charge]]&lt;br /&gt;
*[[#ChargeRatio|ChargeRatio]]&lt;br /&gt;
*[[#Class|Class]]&lt;br /&gt;
*[[#PressureWaste|PressureWaste]]&lt;br /&gt;
*[[#PressureAir|PressureAir]]&lt;br /&gt;
*[[#MaxQuantity|MaxQuantity]]&lt;br /&gt;
*[[#Mature|Mature]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Power_Transmitter&amp;diff=11345</id>
		<title>Power Transmitter</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Power_Transmitter&amp;diff=11345"/>
		<updated>2021-11-28T20:17:39Z</updated>

		<summary type="html">&lt;p&gt;Wark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
{{Itembox&lt;br /&gt;
 | name        = Kit (PowerTransmitter) [[File:Kit (PowerTransmitter).jpg|thumb|Creates whats below]]&lt;br /&gt;
 | createdwith = [[Electronics Printer]]&lt;br /&gt;
 | cost        = 5 [[Gold]], 7 [[Copper]], 3 [[Steel]]&lt;br /&gt;
 | stacks      = 10&lt;br /&gt;
}}&lt;br /&gt;
{{Structurebox&lt;br /&gt;
 | name             = Power Transmitter [[File:Microwave Power Transmitter.jpg|thumb|]]&lt;br /&gt;
 | power_usage      = 10W&lt;br /&gt;
 | placed_with_item = [[Kit (PowerTransmitter)]]&lt;br /&gt;
 | placed_on_grid   = Large Grid&lt;br /&gt;
 | build states     = Three&lt;br /&gt;
 | decon_with_tool1 = [[Hand Drill]]&lt;br /&gt;
 | item_rec1        = 3x [[Electronic Parts]]&lt;br /&gt;
 | decon_with_tool2 = [[Hand Drill]]&lt;br /&gt;
 | item_rec2        = 2x [[Iron Sheets]]&lt;br /&gt;
 | decon_with_tool3 = [[Hand Drill]]&lt;br /&gt;
 | item_rec3        = [[Kit (PowerTransmitter)]]&lt;br /&gt;
}}&lt;br /&gt;
{{Structurebox&lt;br /&gt;
 | name             = Power Receiver [[File:Microwave Power Receiver.jpg|thumb|]]&lt;br /&gt;
 | power_usage      = 10W&lt;br /&gt;
 | placed_with_item = [[Kit (PowerTransmitter)]]&lt;br /&gt;
 | placed_on_grid   = Large Grid&lt;br /&gt;
 | build states     = Three&lt;br /&gt;
 | decon_with_tool1 = [[Hand Drill]]&lt;br /&gt;
 | item_rec1        = 1x [[Electronic Parts]]&lt;br /&gt;
 | decon_with_tool2 = [[Hand Drill]]&lt;br /&gt;
 | item_rec2        = 2x [[Iron Sheets]]&lt;br /&gt;
 | decon_with_tool3 = [[Hand Drill]]&lt;br /&gt;
 | item_rec3        = [[Kit (PowerTransmitter)]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Description == &amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
The Norsec Wireless Power Transmitter is an uni-directional, A-to B, far field microwave electical transmission system. The rotatable base transmitter delivers a narrow, non-lethal Microwave beam to a dedicated base receiver.&lt;br /&gt;
&lt;br /&gt;
The transmitter must be aligned to the base station in order to transmit any power. The brightness of the transmitter&#039;s collimator arc provides an indication of transmission intensity. Note that there is an attrition over longer ranges, so the unit requrires more power over greater distances to deliver the same output.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==General behaviour==&lt;br /&gt;
*5kW is the maximum PowerPotential that can be transmitted, this amount is reduced by distance.&lt;br /&gt;
*Device rotation matters. The default placement is to point the data port north (towards 0° on the compass), other directions will require adding or subtracting angles after doing the math below.&lt;br /&gt;
*The coordinates of these devices will change when the head moves.&lt;br /&gt;
*Both structures and terrain will block the beam, but once a beam is formed it will no longer be blocked by building inbetween (will a power outage break the link?).&lt;br /&gt;
*Unaffected by storms.&lt;br /&gt;
*Using two emitters on the same reciever doesn&#039;t appear to work&lt;br /&gt;
*A Logic Transmitter can mirror recievers, but not emitters.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Range==&lt;br /&gt;
===Power transfer with 4000 W PowerPotential===&lt;br /&gt;
98m = 3630 W (-0.37kW)&lt;br /&gt;
&amp;lt;br&amp;gt;198m = 2863 W (-1.14kW)&lt;br /&gt;
&amp;lt;br&amp;gt;300m = 1409 W (-2.59kW)&lt;br /&gt;
&amp;lt;br&amp;gt;400m = 0 W&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Power transfer with 5000 W PowerPotential===&lt;br /&gt;
98m = 4630 W (-0.37kW)&lt;br /&gt;
&amp;lt;br&amp;gt;198m = 3863 W (-1.14kW)&lt;br /&gt;
&amp;lt;br&amp;gt;300m = 2409 W (-2.59kW)&lt;br /&gt;
&amp;lt;br&amp;gt;400m = 651 W (-4.35kW)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Alignment formulas==&lt;br /&gt;
All dataports points north, the delta values are calculated from: &amp;quot;reciever coordinate&amp;quot; - &amp;quot;emitter coordinate&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Horizontal angle at &amp;quot;emitter&amp;quot; (in radians) = atan2( delta-x / delta-z )&lt;br /&gt;
&amp;lt;br&amp;gt;Horizontal angle at &amp;quot;emitter&amp;quot; (in degrees) = Horizontal angle at &amp;quot;emitter&amp;quot; (in radians) * 180 / pi&lt;br /&gt;
&amp;lt;br&amp;gt;Horizontal angle at &amp;quot;reciever&amp;quot; (in degrees) = 180 + Horizontal angle at &amp;quot;emitter&amp;quot; (in degrees)&lt;br /&gt;
&lt;br /&gt;
Horizontal Hypotenuse (option 1) = delta-z / cos(Horizontal angle at &amp;quot;emitter&amp;quot; (in radians))&lt;br /&gt;
&amp;lt;br&amp;gt;Horizontal Hypotenuse (option 2) = delta-x / sin(Horizontal angle at &amp;quot;emitter&amp;quot; (in radians))&lt;br /&gt;
&amp;lt;br&amp;gt;Horizontal Hypotenuse (option 3) = use pythagoras theorem&lt;br /&gt;
&amp;lt;br&amp;gt;Vertical angle at &amp;quot;emitter&amp;quot; (in degrees) = 90 + atan( delta-y / Horizontal Hypotenuse ) * 180 / pi&lt;br /&gt;
&amp;lt;br&amp;gt;Vertical angle at &amp;quot;reciever&amp;quot; (in degrees) = 180 - Vertical angle at &amp;quot;emitter&amp;quot; (in degrees)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Notes===&lt;br /&gt;
*The vertical calculation uses atan, the horizontal uses atan2.&lt;br /&gt;
*The delta values are not constants, but they only change a little bit.&lt;br /&gt;
*When delta-z = 0, atan2( delta-x / delta-z) still works&lt;br /&gt;
*When calculating the Horizontal Hypotenuse, both trigonometric options gives the same value, but causes divisions by 0 at different angles. The pythagoras option will remove any negative signs but atan still works fine.&lt;br /&gt;
*If you think that atan2( delta-x / delta-z ) looks flipped, it&#039;s because it is. What causes the flip are the devices themselves. When the head rotates horizontally in the positive direction they are actually rotating in what is normally considered the negative direction, and when the head points towards the data port it already has a 90° rotation.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Power_Transmitter&amp;diff=11339</id>
		<title>Power Transmitter</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Power_Transmitter&amp;diff=11339"/>
		<updated>2021-11-25T23:42:46Z</updated>

		<summary type="html">&lt;p&gt;Wark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
{{Itembox&lt;br /&gt;
 | name        = Kit (PowerTransmitter) [[File:Kit (PowerTransmitter).jpg|thumb|Creates whats below]]&lt;br /&gt;
 | createdwith = [[Electronics Printer]]&lt;br /&gt;
 | cost        = 5 [[Gold]], 7 [[Copper]], 3 [[Steel]]&lt;br /&gt;
 | stacks      = 10&lt;br /&gt;
}}&lt;br /&gt;
{{Structurebox&lt;br /&gt;
 | name             = Power Transmitter [[File:Microwave Power Transmitter.jpg|thumb|]]&lt;br /&gt;
 | power_usage      = 10W&lt;br /&gt;
 | placed_with_item = [[Kit (PowerTransmitter)]]&lt;br /&gt;
 | placed_on_grid   = Large Grid&lt;br /&gt;
 | build states     = Three&lt;br /&gt;
 | decon_with_tool1 = [[Hand Drill]]&lt;br /&gt;
 | item_rec1        = 3x [[Electronic Parts]]&lt;br /&gt;
 | decon_with_tool2 = [[Hand Drill]]&lt;br /&gt;
 | item_rec2        = 2x [[Iron Sheets]]&lt;br /&gt;
 | decon_with_tool3 = [[Hand Drill]]&lt;br /&gt;
 | item_rec3        = [[Kit (PowerTransmitter)]]&lt;br /&gt;
}}&lt;br /&gt;
{{Structurebox&lt;br /&gt;
 | name             = Power Receiver [[File:Microwave Power Receiver.jpg|thumb|]]&lt;br /&gt;
 | power_usage      = 10W&lt;br /&gt;
 | placed_with_item = [[Kit (PowerTransmitter)]]&lt;br /&gt;
 | placed_on_grid   = Large Grid&lt;br /&gt;
 | build states     = Three&lt;br /&gt;
 | decon_with_tool1 = [[Hand Drill]]&lt;br /&gt;
 | item_rec1        = 1x [[Electronic Parts]]&lt;br /&gt;
 | decon_with_tool2 = [[Hand Drill]]&lt;br /&gt;
 | item_rec2        = 2x [[Iron Sheets]]&lt;br /&gt;
 | decon_with_tool3 = [[Hand Drill]]&lt;br /&gt;
 | item_rec3        = [[Kit (PowerTransmitter)]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Description == &amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
The Norsec Wireless Power Transmitter is an uni-directional, A-to B, far field microwave electical transmission system. The rotatable base transmitter delivers a narrow, non-lethal Microwave beam to a dedicated base receiver.&lt;br /&gt;
&lt;br /&gt;
The transmitter must be aligned to the base station in order to transmit any power. The brightness of the transmitter&#039;s collimator arc provides an indication of transmission intensity. Note that there is an attrition over longer ranges, so the unit requrires more power over greater distances to deliver the same output.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==General behaviour==&lt;br /&gt;
*5kW is the maximum PowerPotential that can be transmitted, this amount is reduced by distance.&lt;br /&gt;
*Device rotation matters. The default placement is to point the data port north (towards 0° on the compass), other directions will require adding or subtracting angles after doing the math below.&lt;br /&gt;
*The coordinates of these devices will change when the head moves.&lt;br /&gt;
*Both structures and terrain will block the beam.&lt;br /&gt;
*Storms have no effect on the power transfer.&lt;br /&gt;
*Using two emitters on the same reciever doesn&#039;t appear to work&lt;br /&gt;
*A Logic Transmitter can mirror recievers, but not emitters.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Range==&lt;br /&gt;
===Power transfer with 4000 W PowerPotential===&lt;br /&gt;
98m = 3630 W (-0.37kW)&lt;br /&gt;
&amp;lt;br&amp;gt;198m = 2863 W (-1.14kW)&lt;br /&gt;
&amp;lt;br&amp;gt;300m = 1409 W (-2.59kW)&lt;br /&gt;
&amp;lt;br&amp;gt;400m = 0 W&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Power transfer with 5000 W PowerPotential===&lt;br /&gt;
98m = 4630 W (-0.37kW)&lt;br /&gt;
&amp;lt;br&amp;gt;198m = 3863 W (-1.14kW)&lt;br /&gt;
&amp;lt;br&amp;gt;300m = 2409 W (-2.59kW)&lt;br /&gt;
&amp;lt;br&amp;gt;400m = 651 W (-4.35kW)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Alignment formulas==&lt;br /&gt;
All dataports points north, the delta values are calculated from: &amp;quot;reciever coordinate&amp;quot; - &amp;quot;emitter coordinate&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Horizontal angle at &amp;quot;emitter&amp;quot; (in radians) = atan2( delta-x / delta-z )&lt;br /&gt;
&amp;lt;br&amp;gt;Horizontal angle at &amp;quot;emitter&amp;quot; (in degrees) = Horizontal angle at &amp;quot;emitter&amp;quot; (in radians) * 180 / pi&lt;br /&gt;
&amp;lt;br&amp;gt;Horizontal angle at &amp;quot;reciever&amp;quot; (in degrees) = 180 + Horizontal angle at &amp;quot;emitter&amp;quot; (in degrees)&lt;br /&gt;
&lt;br /&gt;
Horizontal Hypotenuse (option 1) = delta-z / cos(Horizontal angle at &amp;quot;emitter&amp;quot; (in radians))&lt;br /&gt;
&amp;lt;br&amp;gt;Horizontal Hypotenuse (option 2) = delta-x / sin(Horizontal angle at &amp;quot;emitter&amp;quot; (in radians))&lt;br /&gt;
&amp;lt;br&amp;gt;Vertical angle at &amp;quot;emitter&amp;quot; (in degrees) = 90 + atan( delta-y / Horizontal Hypotenuse ) * 180 / pi&lt;br /&gt;
&amp;lt;br&amp;gt;Vertical angle at &amp;quot;reciever&amp;quot; (in degrees) = 180 - Vertical angle at &amp;quot;emitter&amp;quot; (in degrees)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Notes===&lt;br /&gt;
*The vertical calculation uses atan, the horizontal uses atan2.&lt;br /&gt;
*The delta values are not constants, but they only change a little bit.&lt;br /&gt;
*When delta-z = 0, atan2( delta-x / delta-z) still works&lt;br /&gt;
*When calculating the Horizontal Hypotenuse, both options gives the same value, but causes divisions by 0 at different angles. &lt;br /&gt;
*If you think that atan2( delta-x / delta-z ) looks flipped, it&#039;s because it is. What causes the flip are the devices themselves. When the head rotates horizontally in the positive direction they are actually rotating in what is normally considered the negative direction, and when the head points towards the data port it already has a 90° rotation.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Power_Transmitter&amp;diff=11338</id>
		<title>Power Transmitter</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Power_Transmitter&amp;diff=11338"/>
		<updated>2021-11-24T21:54:14Z</updated>

		<summary type="html">&lt;p&gt;Wark: added behaviour, range and math&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
{{Itembox&lt;br /&gt;
 | name        = Kit (PowerTransmitter) [[File:Kit (PowerTransmitter).jpg|thumb|Creates whats below]]&lt;br /&gt;
 | createdwith = [[Electronics Printer]]&lt;br /&gt;
 | cost        = 5 [[Gold]], 7 [[Copper]], 3 [[Steel]]&lt;br /&gt;
 | stacks      = 10&lt;br /&gt;
}}&lt;br /&gt;
{{Structurebox&lt;br /&gt;
 | name             = Power Transmitter [[File:Microwave Power Transmitter.jpg|thumb|]]&lt;br /&gt;
 | power_usage      = 10W&lt;br /&gt;
 | placed_with_item = [[Kit (PowerTransmitter)]]&lt;br /&gt;
 | placed_on_grid   = Large Grid&lt;br /&gt;
 | build states     = Three&lt;br /&gt;
 | decon_with_tool1 = [[Hand Drill]]&lt;br /&gt;
 | item_rec1        = 3x [[Electronic Parts]]&lt;br /&gt;
 | decon_with_tool2 = [[Hand Drill]]&lt;br /&gt;
 | item_rec2        = 2x [[Iron Sheets]]&lt;br /&gt;
 | decon_with_tool3 = [[Hand Drill]]&lt;br /&gt;
 | item_rec3        = [[Kit (PowerTransmitter)]]&lt;br /&gt;
}}&lt;br /&gt;
{{Structurebox&lt;br /&gt;
 | name             = Power Receiver [[File:Microwave Power Receiver.jpg|thumb|]]&lt;br /&gt;
 | power_usage      = 10W&lt;br /&gt;
 | placed_with_item = [[Kit (PowerTransmitter)]]&lt;br /&gt;
 | placed_on_grid   = Large Grid&lt;br /&gt;
 | build states     = Three&lt;br /&gt;
 | decon_with_tool1 = [[Hand Drill]]&lt;br /&gt;
 | item_rec1        = 1x [[Electronic Parts]]&lt;br /&gt;
 | decon_with_tool2 = [[Hand Drill]]&lt;br /&gt;
 | item_rec2        = 2x [[Iron Sheets]]&lt;br /&gt;
 | decon_with_tool3 = [[Hand Drill]]&lt;br /&gt;
 | item_rec3        = [[Kit (PowerTransmitter)]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Description == &amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
The Norsec Wireless Power Transmitter is an uni-directional, A-to B, far field microwave electical transmission system. The rotatable base transmitter delivers a narrow, non-lethal Microwave beam to a dedicated base receiver.&lt;br /&gt;
&lt;br /&gt;
The transmitter must be aligned to the base station in order to transmit any power. The brightness of the transmitter&#039;s collimator arc provides an indication of transmission intensity. Note that there is an attrition over longer ranges, so the unit requrires more power over greater distances to deliver the same output.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==General behaviour==&lt;br /&gt;
*5kW is the maximum PowerPotential that can be transmitted, this amount is reduced by distance.&lt;br /&gt;
*Device rotation matters. The default placement is to point the data port north (towards 0° on the compass), other directions will require adding or subtracting angles after doing the math below.&lt;br /&gt;
*The coordinates of these devices will change when the head moves.&lt;br /&gt;
*Both structures and terrain will block the beam.&lt;br /&gt;
*Storms have no effect on the power transfer.&lt;br /&gt;
*Using two emitters on the same reciever doesn&#039;t appear to work&lt;br /&gt;
*A Logic Transmitter can mirror recievers, but not emitters.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Range==&lt;br /&gt;
===Power transfer with 4000 W PowerPotential===&lt;br /&gt;
98m = 3630 W (-0.37kW)&lt;br /&gt;
&amp;lt;br&amp;gt;198m = 2863 W (-1.14kW)&lt;br /&gt;
&amp;lt;br&amp;gt;300m = 1409 W (-2.59kW)&lt;br /&gt;
&amp;lt;br&amp;gt;400m = 0 W&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Power transfer with 5000 W PowerPotential===&lt;br /&gt;
98m = 4630 W (-0.37kW)&lt;br /&gt;
&amp;lt;br&amp;gt;198m = 3863 W (-1.14kW)&lt;br /&gt;
&amp;lt;br&amp;gt;300m = 2409 W (-2.59kW)&lt;br /&gt;
&amp;lt;br&amp;gt;400m = 651 W (-4.35kW)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Alignment formulas==&lt;br /&gt;
All dataports points north, the delta values are calculated from: &amp;quot;reciever coordinate&amp;quot; - &amp;quot;emitter coordinate&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Horizontal angle at &amp;quot;emitter&amp;quot; (in radians) = atan2( delta-x / delta-z )&lt;br /&gt;
&amp;lt;br&amp;gt;Horizontal angle at &amp;quot;emitter&amp;quot; (in degrees) = Horizontal angle at &amp;quot;emitter&amp;quot; (in radians) * 180 / pi&lt;br /&gt;
&amp;lt;br&amp;gt;Horizontal angle at &amp;quot;reciever&amp;quot; (in degrees) = 180 + Horizontal angle at &amp;quot;emitter&amp;quot; (in degrees)&lt;br /&gt;
&lt;br /&gt;
Horizontal Hypotenuse (option 1) = delta-z / cos(Horizontal angle at &amp;quot;emitter&amp;quot; (in radians))&lt;br /&gt;
&amp;lt;br&amp;gt;Horizontal Hypotenuse (option 2) = delta-x / sin(Horizontal angle at &amp;quot;emitter&amp;quot; (in radians))&lt;br /&gt;
&amp;lt;br&amp;gt;Vertical angle at &amp;quot;emitter&amp;quot; (in degrees) = 90 + atan( delta-y / Horizontal Hypotenuse ) * 180 / pi&lt;br /&gt;
&amp;lt;br&amp;gt;Vertical angle at &amp;quot;reciever&amp;quot; (in degrees) = 180 - Vertical angle at &amp;quot;emitter&amp;quot; (in degrees)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
*The vertical calculation uses atan, the horizontal uses atan2.&lt;br /&gt;
*The delta values are not constants, but they only change a little bit.&lt;br /&gt;
*When delta-z = 0, atan2() will still work correctly&lt;br /&gt;
*When calculating the Horizontal Hypotenuse, both options gives the same value, but causes divisions by 0 at different angles. &lt;br /&gt;
*If you think that atan2( delta-x / delta-z ) looks flipped, it&#039;s because it is. What causes the flip are the devices themselves. When their heads rotates in the positive direction they are actually rotating in what is normally considered the negative direction.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=IC10&amp;diff=11337</id>
		<title>IC10</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=IC10&amp;diff=11337"/>
		<updated>2021-11-20T18:30:12Z</updated>

		<summary type="html">&lt;p&gt;Wark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:MIPS Programming]]&lt;br /&gt;
=MIPS scripting language for IC10 housings / chips=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Text after a # will be ignored to the end of the line. The amount of white&lt;br /&gt;
# space between arguments isn&#039;t important, but new lines start a new command.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Registers==&lt;br /&gt;
The IC contains 16 registers, numbered r0-r15. Think of these as variables in other programming languages. In fact, you can name them with the alias command (see below).&lt;br /&gt;
&lt;br /&gt;
To set a register directly (such as r0=2), use the &amp;lt;b&amp;gt;move&amp;lt;/b&amp;gt; command. To read a value from a device, use l (load). To write a value back to a device, use s (set). Note that&lt;br /&gt;
like most machine languages, the &amp;lt;i&amp;gt;destination&amp;lt;/i&amp;gt; goes first, so instructions always look like: action destination source.&lt;br /&gt;
&lt;br /&gt;
There are two more registers. One called ra (return address) and one called sp (stack pointer). The ra is used by certain jump and branching instructions (those ending with -al) to remember which line in the script it should return to. The sp tracks the next index within the stack (a memory that can store up to 512 values) to be pushed (written) to or popped (read) from. Neither ra or sp is protected, their values can be changed by instructions like any other register.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 10&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Sets r0 to the value 10&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 r1&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Copies the value of r1 to r0&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r0 d0 Temperature&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Reads the Temperature parameter from device 0 and places the value in r0 (not all devices have a Temperature parameter, check the in-game stationpedia)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s d0 On r0&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Writes the value from register 0 out to On parameter of device 0 (if r0 equals 0 the device will turn off, if r0 equals 1 it will turn on)&lt;br /&gt;
&lt;br /&gt;
==Device Ports==&lt;br /&gt;
ICs can interact with up to 6 other devices via d0 - d5, as well as the device it&#039;s attached to via db. To change or set a device, use a screwdriver and adjust the device in the IC housing. You can read or set any of the device&#039;s properties, so it is possible to do things like read the pressure and oxygen content of a room on the same Device port. &lt;br /&gt;
&lt;br /&gt;
The l (load) and s (set) instructions let you read and set values on a device.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r0 d0 Temperature&amp;lt;/code&amp;gt; #Reads the temperature from an atmosphere sensor into r0.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s d1 Setting r0 &amp;lt;/code&amp;gt; # Writes r0 to the device on port 1 to the Setting variable.&lt;br /&gt;
&lt;br /&gt;
==Labels==&lt;br /&gt;
Lables are used to make it easier to jump between lines in the script. The label will have a numerical value that is the same as its line number. Even though it&#039;s possible to use a labels value for calculations, doing so is a bad idea since any changes to the code can change the line numbers of the labels.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;main:&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;j main&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Constants==&lt;br /&gt;
Instead of using a register to store a fixed value, a constant can be made. Using this name will refer to the assigned value.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;define pi 3.14159&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move r0 pi&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Indirect referencing==&lt;br /&gt;
This is a way of accessing a register by using another register as a pointer. Adding an additional r infront of the register turns on this behaviour. The value stored in the register being used as the pointer must be between 0 to 15, this will then point to a register from r0 to r15, higher or lower values will cause an error.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 5&amp;lt;/code&amp;gt; stores the value 5 in r0&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move rr0 10&amp;lt;/code&amp;gt; is now the same as &amp;lt;code&amp;gt;move r5 10&amp;lt;/code&amp;gt; since r0 has the value 5, rr0 points at the register r5&lt;br /&gt;
&lt;br /&gt;
Additional r&#039;s can be added to do indirect referencing multiple times in a row.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move r1 2&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move r2 3&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move rrr1 4&amp;lt;/code&amp;gt; is now the same as &amp;lt;code&amp;gt;move r3 4&amp;lt;/code&amp;gt; since r1 points at r2 which points at r3&lt;br /&gt;
&lt;br /&gt;
This also works with devices&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move r0 2&amp;lt;/code&amp;gt; stores the value 2 in r0&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;s dr0 On 1&amp;lt;/code&amp;gt; is now the same as &amp;lt;code&amp;gt;s d2 On 1&amp;lt;/code&amp;gt;, r0 has the value 2 so dr0 points at d2&lt;br /&gt;
&lt;br /&gt;
==Debugging advice==&lt;br /&gt;
The value stored in a register can easily be seen by writing it to the Setting parameter of the IC housing, this has no sideeffects, too see the value just stand close and look directly at the housing (&amp;lt;code&amp;gt;s db Setting r0&amp;lt;/code&amp;gt;).&lt;br /&gt;
&amp;lt;br&amp;gt;To check if a certain block of code is executed, use the above trick but with a number that you choose, like the line number (&amp;lt;code&amp;gt;s db Setting 137&amp;lt;/code&amp;gt;).&lt;br /&gt;
&amp;lt;br&amp;gt;The configuration card can be used to manually check the data values stored in all connected devices.&lt;br /&gt;
&lt;br /&gt;
==What a typical program looks like==&lt;br /&gt;
A program is usually written to be a continuous loop. There is often a jump out of this main loop into a subroutine when a certain condition is met (like a temperature being too high), to perform a needed task (like turning on a cooling system), subroutines almost always returns back to main loop afterwards. The &amp;lt;code&amp;gt;yield&amp;lt;/code&amp;gt; instruction will tell the program to wait for the next game tick before continuing, if it&#039;s not there the game will force the script to automatically take a break after executing 128 lines to prevent the game from freezing. The &amp;lt;code&amp;gt;beq&amp;lt;/code&amp;gt; instruction means &amp;quot;branch (jump) if equal&amp;quot; and compares the first and second numbers, if they match it will jump to the line corresponding to the third number (labels are numbers).&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
alias myDevice d0&lt;br /&gt;
alias myImportantNumber r4&lt;br /&gt;
&lt;br /&gt;
main:&lt;br /&gt;
yield&lt;br /&gt;
#this is a comment, the program will ignore it, they are often used to explain something, or to turn off instructions without deleting them&lt;br /&gt;
...&lt;br /&gt;
beq myImportantNumber 42 mySubroutine&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
mySubroutine:&lt;br /&gt;
...&lt;br /&gt;
j main&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Instructions=&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;alias&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;alias&lt;br /&gt;
:alias str r? d? # labels register or device reference with name.  When alias is applied to a device, it will affect what shows on the screws in the IC base.  (housing)&lt;br /&gt;
&amp;lt;code&amp;gt;alias vTemperature r0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;alias dAutoHydro1 d0&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;move&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;move    &lt;br /&gt;
:d s     # stores the value of s in d&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 42 # Store 42 in register 0&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;l&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;load&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;l (load)&lt;br /&gt;
:l r# d# parameter&lt;br /&gt;
Reads from a device (d#) and stores the value in a register (r#)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r0 d0 Setting&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Read from the device on d0 into register 0&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r1 d5 Pressure&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Read the pressure from a sensor&lt;br /&gt;
&lt;br /&gt;
This also works with aliases. For example:&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
alias Sensor d0 &amp;lt;br/&amp;gt;&lt;br /&gt;
l r0 Sensor Temperature&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;ls&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;load slot&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ls (load slot)&lt;br /&gt;
:ls r# d# slotNum parameter&lt;br /&gt;
Reads from a slot (slotNum) of a device (d#)  and stores the value in a register (r#)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;ls r0 d0 2 Occupied&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Read from the second slot of device on d0, stores 1 in r0 if it&#039;s occupied, 0 otherwise.&lt;br /&gt;
&lt;br /&gt;
And here is the code to read the charge of an AIMeE:&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
alias robot d0 &amp;lt;br/&amp;gt;&lt;br /&gt;
alias charge r0 &amp;lt;br/&amp;gt;&lt;br /&gt;
ls charge robot 0 Charge &lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;s&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;set&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;s (set)&lt;br /&gt;
:s d# parameter r#&lt;br /&gt;
Writes a setting to a device. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s d0 Setting r0&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;add&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;add     &lt;br /&gt;
:d s t   # calculates s + t and stores the result in d&lt;br /&gt;
&amp;lt;code&amp;gt;add r0 r1 1 # add 1 to r1 and store the result as r0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;add r0 r0 1 # increment r0 by one&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;sub&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;sub     &lt;br /&gt;
:d s t   # calculates s - t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;mul&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;mul     &lt;br /&gt;
:d s t   # calculates s * t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;div&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;div     &lt;br /&gt;
:d s t   # calculates s / t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;mod&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;mod     &lt;br /&gt;
:d s t   &lt;br /&gt;
::# calculates s mod t and stores the result in d. Note this&lt;br /&gt;
::# doesn&#039;t behave like the % operator - the result will be &lt;br /&gt;
::# positive even if the either of the operands are negative&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;slt&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;slt     &lt;br /&gt;
:d s t   # stores 1 in d if s &amp;lt; t, 0 otherwise&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;sqrt&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;sqrt    &lt;br /&gt;
:d s     # calculates sqrt(s) and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;round&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;round   &lt;br /&gt;
:d s     # finds the rounded value of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;trunc&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;trunc   &lt;br /&gt;
:d s     # finds the truncated value of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;ceil&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ceil   &lt;br /&gt;
: d s     # calculates the ceiling of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;floor&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;floor  &lt;br /&gt;
: d s     # calculates the floor of s and stores the result in d&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;max&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;max    &lt;br /&gt;
: d s t   # calculates the maximum of s and t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;min&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;min    &lt;br /&gt;
: d s t   # calculates the minimum of s and t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;abs&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;abs    &lt;br /&gt;
: d s     # calculates the absolute value of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;log&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;log    &lt;br /&gt;
: d s     # calculates the natural logarithm of s and stores the result&lt;br /&gt;
::# in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;exp&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;exp    &lt;br /&gt;
: d s     # calculates the exponential of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;rand&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;rand   &lt;br /&gt;
: d       # selects a random number uniformly at random between 0 and 1&lt;br /&gt;
::# inclusive and stores the result in d&lt;br /&gt;
&lt;br /&gt;
::# boolean arithmetic uses the C convention that 0 is false and any non-zero&lt;br /&gt;
::# value is true.&lt;br /&gt;
&amp;lt;div id=&amp;quot;and&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;and    &lt;br /&gt;
: d s t   # stores 1 in d if both s and t have non-zero values,&lt;br /&gt;
::# 0 otherwise&lt;br /&gt;
&amp;lt;div id=&amp;quot;or&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;or     &lt;br /&gt;
: d s t   # stores 1 in d if either s or t have non-zero values,&lt;br /&gt;
::# 0 otherwise&lt;br /&gt;
&amp;lt;div id=&amp;quot;xor&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;xor    &lt;br /&gt;
: d s t   # stores 1 in d if exactly one of s and t are non-zero,&lt;br /&gt;
::# 0 otherwise&lt;br /&gt;
&amp;lt;div id=&amp;quot;nor&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;nor &lt;br /&gt;
:    d s t   # stores 1 in d if both s and t equal zero, 0 otherwise&lt;br /&gt;
::# Lines are numbered starting at zero&lt;br /&gt;
&amp;lt;div id=&amp;quot;j&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;j&lt;br /&gt;
:             a # jumps to line a.&lt;br /&gt;
&amp;lt;div id=&amp;quot;bltz&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bltz&lt;br /&gt;
:      s   a # jumps to line a if s &amp;lt;  0&lt;br /&gt;
&amp;lt;div id=&amp;quot;blez&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;blez &lt;br /&gt;
:     s   a # jumps to line a if s &amp;lt;= 0&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;bgez&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bgez &lt;br /&gt;
:     s   a # jumps to line a if s &amp;gt;= 0&lt;br /&gt;
&amp;lt;div id=&amp;quot;bgtz&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bgtz&lt;br /&gt;
:      s   a # jumps to line a if s &amp;gt;  0&lt;br /&gt;
&amp;lt;div id=&amp;quot;beq&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;beq &lt;br /&gt;
:      s t a # jumps to line a if s == t&lt;br /&gt;
&amp;lt;div id=&amp;quot;bne&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bne &lt;br /&gt;
:      s t a # jumps to line a if s != t&lt;br /&gt;
&amp;lt;div id=&amp;quot;bdseal&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bdseal&lt;br /&gt;
:    d? a(r?|num) # Jump execution to line a and store current line number if device d? is set.&lt;br /&gt;
&amp;lt;code&amp;gt;bdseal d0 32 #Store line number and jump to line 32 if d0 is assigned.&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;BR&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;bdseal dThisVictim HarvestCrop #Store line in ra and jump to sub HarvestCrop if device dThisVictim is assigned.&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;yield&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;yield           &lt;br /&gt;
: 	# ceases code execution for this power tick&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;lb&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;lb&lt;br /&gt;
:      r? typeHash var batchMode # Loads var from all output network devices with provided typeHash  using provided batchMode: Average(0), Sum (1), Minimum (2), Maximum (3). Can be used word or number. Result store into r?&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;sb&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;sb&lt;br /&gt;
:      typeHash var r? # Store register r? to var on all output network devices with provided typeHash&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
; #&lt;br /&gt;
:     # The following text will be ignored during compiling; use this to create comments.&lt;br /&gt;
&lt;br /&gt;
[https://www.cs.tufts.edu/comp/140/lectures/Day_3/mips_summary.pdf Other examples]&lt;br /&gt;
&lt;br /&gt;
== Conditional functions cheatsheet ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! suffix !! description !! branch to line !! branch and store return address !! relative jump to line !! set register&lt;br /&gt;
|-&lt;br /&gt;
| prefix: ||  || b- || b-al || br- || s-&lt;br /&gt;
|-&lt;br /&gt;
|  || unconditional || j    || jal    || jr    || &lt;br /&gt;
|-&lt;br /&gt;
| -eq  || if a == b || beq  || beqal  || breq  || seq&lt;br /&gt;
|-&lt;br /&gt;
| -eqz || if a == 0 || beqz || beqzal || breqz || seqz&lt;br /&gt;
|-&lt;br /&gt;
| -ge  || if a &amp;gt;= b || bge  || bgeal  || brge  || sge&lt;br /&gt;
|-&lt;br /&gt;
| -gez || if a &amp;gt;= 0 || bgez || bgezal || brgez || sgez&lt;br /&gt;
|-&lt;br /&gt;
| -gt  || if a &amp;gt; b  || bgt  || bgtal  || brgt  || sgt&lt;br /&gt;
|-&lt;br /&gt;
| -gtz || if a &amp;gt; 0  || bgtz || bgtzal || brgtz || sgtz&lt;br /&gt;
|-&lt;br /&gt;
| -le  || if a &amp;lt;= b || ble  || bleal  || brle  || sle&lt;br /&gt;
|-&lt;br /&gt;
| -lez || if a &amp;lt;= 0 || blez || blezal || brlez || slez&lt;br /&gt;
|-&lt;br /&gt;
| -lt  || if a &amp;lt; b  || blt  || bltal  || brlt  || slt&lt;br /&gt;
|-&lt;br /&gt;
| -ltz || if a &amp;lt; 0  || bltz || bltzal || brltz || sltz&lt;br /&gt;
|-&lt;br /&gt;
| -ne  || if a != b || bne  || bneal  || brne  || sne&lt;br /&gt;
|-&lt;br /&gt;
| -nez || if a != 0 || bnez || bnezal || brnez || snez&lt;br /&gt;
|-&lt;br /&gt;
| -dns || if device d is not set          || bdns || bdnsal || brdns || sdns&lt;br /&gt;
|-&lt;br /&gt;
| -dse || if device d is set              || bdse || bdseal || brdse || sdse&lt;br /&gt;
|-&lt;br /&gt;
| -ap  || if a approximately equals b     || bap  || bapal  || brap  || sap&lt;br /&gt;
|-&lt;br /&gt;
| -apz || if a approximately equals 0     || bapz || bapzal || brapz || sapz&lt;br /&gt;
|-&lt;br /&gt;
| -na  || if a not approximately equals b || bna  || bnaal  || brna  || sna&lt;br /&gt;
|-&lt;br /&gt;
| -naz || if a not approximately equals 0 || bnaz || bnazal || brnaz || snaz&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
All &amp;lt;code&amp;gt;b-&amp;lt;/code&amp;gt; commands require target line as last argument, all &amp;lt;code&amp;gt;s-&amp;lt;/code&amp;gt; commands require register to store result as first argument. All &amp;lt;code&amp;gt;br-&amp;lt;/code&amp;gt; commands require number to jump relatively as last argument. e.g. &amp;lt;code&amp;gt;breq a b 3&amp;lt;/code&amp;gt; means if a=b then jump to 3 lines after.&lt;br /&gt;
&lt;br /&gt;
All approximate functions require additional argument denoting how close two numbers need to be considered equal. E.g.: &amp;lt;code&amp;gt;sap r0 100 101 0.01&amp;lt;/code&amp;gt; will consider 100 and 101 almost equal (not more than 1%=0.01 different) and will set r0 to 1. The exact formula is &amp;lt;code&amp;gt;if abs(a - b) &amp;lt;= max(c * max(abs(a), abs(b)), float.epsilon * 8)&amp;lt;/code&amp;gt; for &amp;lt;code&amp;gt;-ap&amp;lt;/code&amp;gt; and is similar for other approximate functions.&lt;br /&gt;
&lt;br /&gt;
==Device Variables==&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Activate&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Activate&lt;br /&gt;
:1 if device is activated (usually means running), otherwise 0&lt;br /&gt;
:&amp;lt;code&amp;gt;l r0 d0 Activate # sets r0 to 1 if on or 0 if off&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;AirRelease&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;AirRelease&lt;br /&gt;
&amp;lt;div id=&amp;quot;Charge&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Charge&lt;br /&gt;
:    The current charge the device has.&lt;br /&gt;
&amp;lt;div id=&amp;quot;CLearMemory&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;CLearMemory&lt;br /&gt;
:    When set to 1, clears the counter memory (e.g. ExportCount).  Will set itself back to 0 when triggered.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Color&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Color&lt;br /&gt;
:    0 (or lower) = Blue&lt;br /&gt;
:    1 = Grey&lt;br /&gt;
:    2 = Green&lt;br /&gt;
:    3 = Orange&lt;br /&gt;
:    4 = Red&lt;br /&gt;
:    5 = Yellow&lt;br /&gt;
:    6 = White&lt;br /&gt;
:    7 = Black&lt;br /&gt;
:    8 = Brown&lt;br /&gt;
:    9 = Khaki&lt;br /&gt;
:    10 = Pink&lt;br /&gt;
:    11 (or higher) = Purple&lt;br /&gt;
&amp;lt;div id=&amp;quot;CompletionRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;CompletionRatio&lt;br /&gt;
&amp;lt;div id=&amp;quot;ElevatorLevel&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ElevatorLevel&lt;br /&gt;
&amp;lt;div id=&amp;quot;ElevatorSpeed&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ElevatorSpeed&lt;br /&gt;
&amp;lt;div id=&amp;quot;Error&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Error&lt;br /&gt;
:	1 if device is in error state, otherwise 0&lt;br /&gt;
&amp;lt;div id=&amp;quot;ExportCount&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ExportCount&lt;br /&gt;
:    How many items exporfted since last ClearMemory.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Filtration&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Filtration&lt;br /&gt;
:	The current state of the filtration system.  For example filtration = 1 for a Hardsuit when filtration is On.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Harvest&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Harvest&lt;br /&gt;
:	Performs the harvesting action for any plant based machinery.&lt;br /&gt;
:  &amp;lt;code&amp;gt;s d0 Harvest 1 # Performs 1 harvest action on device d0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;Horizontal&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Horizontal&lt;br /&gt;
&amp;lt;div id=&amp;quot;HorizontalRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;HorizontalRatio&lt;br /&gt;
&amp;lt;div id=&amp;quot;Idle&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Idle&lt;br /&gt;
&amp;lt;div id=&amp;quot;ImportCount&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ImportCount&lt;br /&gt;
&amp;lt;div id=&amp;quot;Lock&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Lock&lt;br /&gt;
&amp;lt;div id=&amp;quot;Maximum&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Maximum&lt;br /&gt;
&amp;lt;div id=&amp;quot;Mode&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Mode&lt;br /&gt;
&amp;lt;div id=&amp;quot;On&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;On&lt;br /&gt;
&amp;lt;div id=&amp;quot;Open&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Open&lt;br /&gt;
&amp;lt;div id=&amp;quot;Output&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Output&lt;br /&gt;
&amp;lt;div id=&amp;quot;Plant&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Plant&lt;br /&gt;
:    Performs the planting operation for any plant based machinery.&lt;br /&gt;
:  &amp;lt;code&amp;gt;s d0 Plant 1 # Plants one crop in device d0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;PositionX&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PositionX&lt;br /&gt;
&amp;lt;div id=&amp;quot;PositionY&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PositionY&lt;br /&gt;
&amp;lt;div id=&amp;quot;PositionZ&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PositionZ&lt;br /&gt;
&amp;lt;div id=&amp;quot;Power&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Power&lt;br /&gt;
&amp;lt;div id=&amp;quot;PowerActual&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PowerActual&lt;br /&gt;
&amp;lt;div id=&amp;quot;PowerPotential&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PowerPotential&lt;br /&gt;
&amp;lt;div id=&amp;quot;PowerRequired&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PowerRequired&lt;br /&gt;
&amp;lt;div id=&amp;quot;Pressure&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Pressure&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureExternal&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureExternal&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureInteral&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureInteral&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureSetting&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureSetting&lt;br /&gt;
&amp;lt;div id=&amp;quot;Quantity&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Quantity&lt;br /&gt;
:	Total quantity in the device.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Ratio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Ratio&lt;br /&gt;
:	Context specific value depending on device, 0 to 1 based ratio.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioCarbonDioxide&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioCarbonDioxide&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioNitrogen&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioNitrogen&lt;br /&gt;
:	The ratio of nitrogen in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioOxygen&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioOxygen&lt;br /&gt;
:	The ratio of oxygen in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioPollutant&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioPollutant&lt;br /&gt;
:	The ratio of pollutant in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioVolatiles&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioVolatiles&lt;br /&gt;
:	The ratio of volatiles in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioWater&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioWater&lt;br /&gt;
:	The ratio of water in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Reagents&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Reagents&lt;br /&gt;
&amp;lt;div id=&amp;quot;RecipeHash&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RecipeHash&lt;br /&gt;
&amp;lt;div id=&amp;quot;RequestHash&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RequestHash&lt;br /&gt;
&amp;lt;div id=&amp;quot;RequiredPower&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RequiredPower&lt;br /&gt;
&amp;lt;div id=&amp;quot;Setting&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Setting&lt;br /&gt;
&amp;lt;div id=&amp;quot;SolarAngle&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;SolarAngle&lt;br /&gt;
:    Solar angle of the device.&lt;br /&gt;
:  &amp;lt;code&amp;gt;l r0 d0 SolarAngle # Sets r0 to the solar angle of d0.&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;Temperature&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Temperature&lt;br /&gt;
&amp;lt;div id=&amp;quot;TemperatureSettings&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;TemperatureSettings&lt;br /&gt;
&amp;lt;div id=&amp;quot;TotalMoles&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;TotalMoles&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityMagnitude&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityMagnitude&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityRelativeX&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityRelativeX&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityRelativeY&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityRelativeY&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityRelativeZ&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityRelativeZ&lt;br /&gt;
&amp;lt;div id=&amp;quot;Vertical&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Vertical&lt;br /&gt;
:	Vertical setting of the device.&lt;br /&gt;
&amp;lt;div id=&amp;quot;VerticalRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VerticalRatio&lt;br /&gt;
:	Ratio of vertical setting for device.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Volume&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Volume&lt;br /&gt;
:	Returns the device atmosphere volume&lt;br /&gt;
&lt;br /&gt;
==Slot Variables==&lt;br /&gt;
In general (always?) slots are assigned as follows.&lt;br /&gt;
:Slot 0: Import&lt;br /&gt;
:Slot 1: Export&lt;br /&gt;
:Slot 2: Inside Machine&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Occupied&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Occupied&lt;br /&gt;
:&amp;lt;code&amp;gt;ls r0 d0 2 Occupied #Stores 1 in r0 if d0 has more seeds&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;ls vOccupied dThisVictim 2 Occupied #stores 1 in vOccupied if dThisVictim has more seeds&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;OccupantHash&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;OccupantHash&lt;br /&gt;
&amp;lt;div id=&amp;quot;Quantity&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Quantity&lt;br /&gt;
&amp;lt;div id=&amp;quot;Damage&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Damage&lt;br /&gt;
&amp;lt;div id=&amp;quot;Efficiency&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Efficiency&lt;br /&gt;
&amp;lt;div id=&amp;quot;Health&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Health&lt;br /&gt;
&amp;lt;div id=&amp;quot;Growth&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Growth&lt;br /&gt;
:&amp;lt;code&amp;gt;ls r0 d0 0 Growth # Store the numerical growth stage of d0 in r0&amp;lt;/code&amp;gt; &lt;br /&gt;
&amp;lt;div id=&amp;quot;Pressure&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Pressure&lt;br /&gt;
&amp;lt;div id=&amp;quot;Temperature&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Temperature&lt;br /&gt;
&amp;lt;div id=&amp;quot;Charge&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Charge&lt;br /&gt;
&amp;lt;div id=&amp;quot;ChargeRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ChargeRatio&lt;br /&gt;
&amp;lt;div id=&amp;quot;Class&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Class&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureWaste&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureWaste&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureAir&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureAir&lt;br /&gt;
&amp;lt;div id=&amp;quot;MaxQuantity&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;MaxQuantity&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Mature&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Mature&lt;br /&gt;
:&amp;lt;code&amp;gt;ls r0 d0 0 Mature # Store 1 in r0 if d0 has a mature crop&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;ls vMature dThisVictim 0 Mature # Store 1 in vMature if dThisVictim has a mature crop&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Examples=&lt;br /&gt;
Previous examples were obsolete due to game changes, or confusing, they have been moved into the Discussions section&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Harvie automation===&lt;br /&gt;
This script uses the batch instruction &amp;lt;code&amp;gt;sb ...&amp;lt;/code&amp;gt; to control all Harvie devices on the network. But only one Harvie and one Tray will be the &#039;&#039;master&#039;&#039; and have their values read, the rest of the Harvies will repeat exactly what this unit does. Some problems with this design is that different types of crops mature at different speeds, and if seeds were manually planted and the master unit recieved the first seed, the harvesting action will be performed too early on all the other plants since they are growing a few seconds slower.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot; data-expandtext=&amp;quot;{{int:Expand, Automated Harvie Script}}&amp;quot; data-collapsetext=&amp;quot;{{int:Collapse, Automated Harvie Script}}&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
alias dHarvie d0&lt;br /&gt;
alias dTray d1&lt;br /&gt;
&lt;br /&gt;
alias rHarvieHash r8&lt;br /&gt;
alias rTrayHash r9&lt;br /&gt;
l rHarvieHash dHarvie PrefabHash&lt;br /&gt;
l rTrayHash dTray PrefabHash&lt;br /&gt;
&lt;br /&gt;
main:&lt;br /&gt;
yield&lt;br /&gt;
 #read plant data from the Tray&lt;br /&gt;
ls r0 dTray 0 Mature&lt;br /&gt;
 #harvestable plants return 1, young plants return 0&lt;br /&gt;
 #nothing planted returns -1&lt;br /&gt;
beq r0 -1 plantCrop&lt;br /&gt;
beq r0 1 harvestCrop&lt;br /&gt;
ls r0 dTray 0 Seeding&lt;br /&gt;
 #seeds available returns 1, all seeds picked returns 0&lt;br /&gt;
 #plants too young or old for seeds returns -1&lt;br /&gt;
beq r0 1 harvestCrop&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
plantCrop:&lt;br /&gt;
 #stop the planting if no seeds available&lt;br /&gt;
 #otherwise it will plant nothing repeatedly&lt;br /&gt;
ls r0 dHarvie 0 Occupied&lt;br /&gt;
beq r0 0 main&lt;br /&gt;
sb rHarvieHash Plant 1&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
harvestCrop:&lt;br /&gt;
sb rHarvieHash Harvest 1&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
### End Script ###&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
===Solar Panel 2-axis tracking===&lt;br /&gt;
This script was copied from the [[Solar_Logic_Circuits_Guide]] (code provided by bti, comments and readability changes by Fudd79)&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot; data-expandtext=&amp;quot;{{int:Expand, Solar Panel 2-axis tracking}}&amp;quot; data-collapsetext=&amp;quot;{{int:Collapse, Solar Panel 2-axis tracking}}&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# This code assumes the following:&lt;br /&gt;
# Daylight Sensor data-port points north&lt;br /&gt;
# Solar Panel data-port points east&lt;br /&gt;
&lt;br /&gt;
alias sensor d0&lt;br /&gt;
alias v_angle r0&lt;br /&gt;
alias h_angle r1&lt;br /&gt;
alias sun_up r2&lt;br /&gt;
&lt;br /&gt;
define solar_panel_hash -539224550&lt;br /&gt;
define heavy_solar_panel_hash -1545574413&lt;br /&gt;
&lt;br /&gt;
start:&lt;br /&gt;
# Check to see if sun is up&lt;br /&gt;
l sun_up sensor Activate&lt;br /&gt;
# Go to reset if it&#039;s not&lt;br /&gt;
beqz sun_up reset&lt;br /&gt;
&lt;br /&gt;
# Calculate vertical angle&lt;br /&gt;
l v_angle sensor Vertical&lt;br /&gt;
div v_angle v_angle 1.5&lt;br /&gt;
sub v_angle 50 v_angle&lt;br /&gt;
&lt;br /&gt;
# Write vertical angle to all solar panels&lt;br /&gt;
sb solar_panel_hash Vertical v_angle&lt;br /&gt;
sb heavy_solar_panel_hash Vertical v_angle&lt;br /&gt;
&lt;br /&gt;
# Obtain horizontal angle&lt;br /&gt;
l h_angle sensor Horizontal&lt;br /&gt;
&lt;br /&gt;
# Write vertical angle to all solar panels&lt;br /&gt;
sb solar_panel_hash Horizontal h_angle&lt;br /&gt;
sb heavy_solar_panel_hash Horizontal h_angle&lt;br /&gt;
&lt;br /&gt;
# Go to start again&lt;br /&gt;
yield&lt;br /&gt;
j start&lt;br /&gt;
&lt;br /&gt;
reset:&lt;br /&gt;
# Park solar panels vertically facing sunrise&lt;br /&gt;
sb solar_panel_hash Vertical 0&lt;br /&gt;
sb heavy_solar_panel_hash Vertical 0&lt;br /&gt;
# Park solar panels horizontally facing sunrise&lt;br /&gt;
sb solar_panel_hash Horizontal -90&lt;br /&gt;
sb heavy_solar_panel_hash Horizontal -90&lt;br /&gt;
# Wait 10 seconds&lt;br /&gt;
sleep 10&lt;br /&gt;
# Go to start again&lt;br /&gt;
j start&lt;br /&gt;
&lt;br /&gt;
### End Script ###&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
===Example experiment: how many lines of code are executed each tick?===&lt;br /&gt;
To determine this, a script without &amp;lt;code&amp;gt;yield&amp;lt;/code&amp;gt; will be used. It should have as few lines as possible (so no labels are used, but a reset value at the top will be needed) and count the number of lines, the IC Housing will be used to display the result.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
move r0 1   #the first line has number 0&lt;br /&gt;
add r0 r0 3&lt;br /&gt;
s db Setting r0&lt;br /&gt;
j 1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Result (the numbers appears every 0.5 seconds):&lt;br /&gt;
&amp;lt;br&amp;gt;127&lt;br /&gt;
&amp;lt;br&amp;gt;256 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;385 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;511 (+126)&lt;br /&gt;
&amp;lt;br&amp;gt;640 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;769 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;895 (+126)&lt;br /&gt;
&amp;lt;br&amp;gt;1024 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;1153 (+129)&lt;br /&gt;
&lt;br /&gt;
There is a repeating +129, +129, +126 sequence, a hint that the real value is 128. Which also happens to be the number of lines in a script, which makes sense. A variation of this experiment will show that empty rows are also counted towards this number.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Links=&lt;br /&gt;
----&lt;br /&gt;
* [https://stationeering.com/tools/ic] Stationeering.com offers a programmable circuits simulator so you can develop your code without repeatedly dying in game!&lt;br /&gt;
* [https://hastebin.com/uwuhidozun.md]&lt;br /&gt;
* [http://www.easy68k.com/]&lt;br /&gt;
* [https://pastebin.com/6Uw1KSRN] syntax highlighting for IC10 MIPS for KDE kwrite/kate text editor&lt;br /&gt;
* [https://drive.google.com/file/d/1yEsJ-u94OkuMQ8K6fY7Ja1HNpLcAdjo_/view] syntax highlighting for IC10 MIPS for Notepad++&lt;br /&gt;
* [https://pastebin.com/3kmGy0NN] syntax highlighting for IC10 MIPS for Notepad++ (updated: 05/05/2021)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Index=&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|+Functions &lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
*[[#abs|abs]]&lt;br /&gt;
*[[#add|add]]&lt;br /&gt;
*[[#alias|alias]]&lt;br /&gt;
*[[#and|and]]&lt;br /&gt;
*[[#beq|beq]]&lt;br /&gt;
*[[#bgez|bgez]]&lt;br /&gt;
*[[#bgtz|bgtz]]&lt;br /&gt;
*[[#blez|blez]]&lt;br /&gt;
*[[#bltz|bltz]]&lt;br /&gt;
*[[#bne|bne]]&lt;br /&gt;
*[[#breq|breq]]&lt;br /&gt;
*[[#brgez|brgez]]&lt;br /&gt;
*[[#brgtz|brgtz]]&lt;br /&gt;
*[[#brlez|brlez]]&lt;br /&gt;
*[[#brltz|brltz]]&lt;br /&gt;
*[[#brne|brne]]&lt;br /&gt;
*[[#ceil|cell]]&lt;br /&gt;
*[[#div|div]]&lt;br /&gt;
*[[#exp|exp]]&lt;br /&gt;
*[[#floor|floor]]&lt;br /&gt;
*[[#j|j]]&lt;br /&gt;
*[[#jr|jr]]&lt;br /&gt;
*[[#l|l]]&lt;br /&gt;
*[[#log|log]]&lt;br /&gt;
*[[#ls|ls]]&lt;br /&gt;
*[[#max|max]]&lt;br /&gt;
*[[#min|min]]&lt;br /&gt;
*[[#mod|mod]]&lt;br /&gt;
*[[#move|move]]&lt;br /&gt;
*[[#mul|mul]]&lt;br /&gt;
*[[#nor|nor]]&lt;br /&gt;
*[[#or|or]]&lt;br /&gt;
*[[#rand|rand]]&lt;br /&gt;
*[[#round|round]]&lt;br /&gt;
*[[#s|s]]&lt;br /&gt;
*[[#slt|slt]]&lt;br /&gt;
*[[#sqrt|sqrt]]&lt;br /&gt;
*[[#sub|sub]]&lt;br /&gt;
*[[#trunc|trunc]]&lt;br /&gt;
*[[#xor|xor]]xor&lt;br /&gt;
*[[#yield|yield]]&lt;br /&gt;
*[[##|#]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|+Device Variables &lt;br /&gt;
&amp;lt;div  class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
*[[#Activate|Activate]]&lt;br /&gt;
*[[#AirRelease|AirRelease]]&lt;br /&gt;
*[[#Charge|Charge]]&lt;br /&gt;
*[[#CLearMemory|CLearMemory]]&lt;br /&gt;
*[[#Color|Color]]&lt;br /&gt;
*[[#CompletionRatio|CompletionRatio]]&lt;br /&gt;
*[[#ElevatorLevel|ElevatorLevel]]&lt;br /&gt;
*[[#ElevatorSpeed|ElevatorSpeed]]&lt;br /&gt;
*[[#Error|Error]]&lt;br /&gt;
*[[#ExportCount|ExportCount]]&lt;br /&gt;
*[[#Filtration|Filtration]]&lt;br /&gt;
*[[#Harvest|Harvest]]&lt;br /&gt;
*[[#Horizontal|Horizontal]]&lt;br /&gt;
*[[#HorizontalRatio|HorizontalRatio]]&lt;br /&gt;
*[[#Idle|Idle]]&lt;br /&gt;
*[[#ImportCount|ImportCount]]&lt;br /&gt;
*[[#Lock|Lock]]&lt;br /&gt;
*[[#Maximum|Maximum]]&lt;br /&gt;
*[[#Mode|Mode]]&lt;br /&gt;
*[[#On|On]]&lt;br /&gt;
*[[#Open|Open]]&lt;br /&gt;
*[[#Output|Output]]&lt;br /&gt;
*[[#Plant|Plant]]&lt;br /&gt;
*[[#PositionX|PositionX]]&lt;br /&gt;
*[[#PositionY|PositionY]]&lt;br /&gt;
*[[#PositionZ|PositionZ]]&lt;br /&gt;
*[[#Power|Power]]&lt;br /&gt;
*[[#PowerActual|PowerActual]]&lt;br /&gt;
*[[#PowerPotential|PowerPotential]]&lt;br /&gt;
*[[#PowerRequired|PowerRequired]]&lt;br /&gt;
*[[#Pressure|Pressure]]&lt;br /&gt;
*[[#PressureExternal|PressureExternal]]&lt;br /&gt;
*[[#PressureInteral|PressureInteral]]&lt;br /&gt;
*[[#PressureSetting|PressureSetting]]&lt;br /&gt;
*[[#Quantity|Quantity]]&lt;br /&gt;
*[[#Ratio|Ratio]]&lt;br /&gt;
*[[#RatioCarbonDioxide|RatioCarbonDioxide]]&lt;br /&gt;
*[[#RatioNitrogen|RatioNitrogen]]&lt;br /&gt;
*[[#RatioOxygen|RatioOxygen]]&lt;br /&gt;
*[[#RatioPollutant|RatioPollutant]]&lt;br /&gt;
*[[#RatioVolatiles|RatioVolatiles]]&lt;br /&gt;
*[[#RatioWater|RatioWater]]&lt;br /&gt;
*[[#Reagents|Reagents]]&lt;br /&gt;
*[[#RecipeHash|RecipeHash]]&lt;br /&gt;
*[[#RequestHash|RequestHash]]&lt;br /&gt;
*[[#RequiredPower|RequiredPower]]&lt;br /&gt;
*[[#Setting|Setting]]&lt;br /&gt;
*[[#SolarAngle|SolarAngle]]&lt;br /&gt;
*[[#Temperature|Temperature]]&lt;br /&gt;
*[[#TemperatureSettings|TemperatureSettings]]&lt;br /&gt;
*[[#TotalMoles|TotalMoles]]&lt;br /&gt;
*[[#VelocityMagnitude|VelocityMagnitude]]&lt;br /&gt;
*[[#VelocityRelativeX|VelocityRelativeX]]&lt;br /&gt;
*[[#VelocityRelativeY|VelocityRelativeY]]&lt;br /&gt;
*[[#VelocityRelativeZ|VelocityRelativeZ]]&lt;br /&gt;
*[[#Vertical|Vertical]]&lt;br /&gt;
*[[#VerticalRatio|VerticalRatio]]&lt;br /&gt;
*[[#Volume|Volume]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|+Slot Variables &lt;br /&gt;
&amp;lt;div  class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
*[[#Occupied|Occupied]]&lt;br /&gt;
*[[#OccupantHash|OccupantHash]]&lt;br /&gt;
*[[#Quantity|Quantity]]&lt;br /&gt;
*[[#Damage|Damage]]&lt;br /&gt;
*[[#Efficiency|Efficiency]]&lt;br /&gt;
*[[#Health|Health]]&lt;br /&gt;
*[[#Growth|Growth]]&lt;br /&gt;
*[[#Pressure|Pressure]]&lt;br /&gt;
*[[#Temperature|Temperature]]&lt;br /&gt;
*[[#Charge|Charge]]&lt;br /&gt;
*[[#ChargeRatio|ChargeRatio]]&lt;br /&gt;
*[[#Class|Class]]&lt;br /&gt;
*[[#PressureWaste|PressureWaste]]&lt;br /&gt;
*[[#PressureAir|PressureAir]]&lt;br /&gt;
*[[#MaxQuantity|MaxQuantity]]&lt;br /&gt;
*[[#Mature|Mature]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=IC10&amp;diff=11314</id>
		<title>IC10</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=IC10&amp;diff=11314"/>
		<updated>2021-10-25T22:49:16Z</updated>

		<summary type="html">&lt;p&gt;Wark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:MIPS Programming]]&lt;br /&gt;
=MIPS scripting language for IC10 housings / chips=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Text after a # will be ignored to the end of the line. The amount of white&lt;br /&gt;
# space between arguments isn&#039;t important, but new lines start a new command.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Registers==&lt;br /&gt;
The IC contains 16 registers, numbered r0-r15. Think of these as variables in other programming languages. In fact, you can name them with the alias command (see below).&lt;br /&gt;
&lt;br /&gt;
To set a register directly (such as r0=2), use the &amp;lt;b&amp;gt;move&amp;lt;/b&amp;gt; command. To read a value from a device, use l (load). To write a value back to a device, use s (set). Note that&lt;br /&gt;
like most machine languages, the &amp;lt;i&amp;gt;destination&amp;lt;/i&amp;gt; goes first, so instructions always look like: action destination source.&lt;br /&gt;
&lt;br /&gt;
There are two more registers. One called ra (return address) and one called sp (stack pointer). The ra is used by certain jump and branching instructions (those ending with -al) to remember which line in the script it should return to. The sp tracks the next index within the stack (a memory that can store up to 512 values) to be pushed (written) to or popped (read) from. Neither ra or sp is protected, their values can be changed by instructions like any other register.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 10&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Sets r0 to the value 10&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 r1&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Copies the value of r1 to r0&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r0 d0 Temperature&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Reads the Temperature parameter from device 0 and places the value in r0 (not all devices have a Temperature parameter, check the in-game stationpedia)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s d0 On r0&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Writes the value from register 0 out to On parameter of device 0 (if r0 equals 0 the device will turn off, if r0 equals 1 it will turn on)&lt;br /&gt;
&lt;br /&gt;
==Device Ports==&lt;br /&gt;
ICs can interact with up to 6 other devices via d0 - d5, as well as the device it&#039;s attached to via db. To change or set a device, use a screwdriver and adjust the device in the IC housing. You can read or set any of the device&#039;s properties, so it is possible to do things like read the pressure and oxygen content of a room on the same Device port. &lt;br /&gt;
&lt;br /&gt;
The l (load) and s (set) instructions let you read and set values on a device.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r0 d0 Temperature&amp;lt;/code&amp;gt; #Reads the temperature from an atmosphere sensor into r0.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s d1 Setting r0 &amp;lt;/code&amp;gt; # Writes r0 to the device on port 1 to the Setting variable.&lt;br /&gt;
&lt;br /&gt;
==Labels==&lt;br /&gt;
Lables are used to make it easier to jump between lines in the script. The label will have a numerical value that is the same as its line number. Even though it&#039;s possible to use a labels value for calculations, doing so is a bad idea since any changes to the code can change the line numbers of the labels.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;main:&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;j main&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Constants==&lt;br /&gt;
Instead of using a register to store a fixed value, a constant can be made. Using this name will refer to the assigned value.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;define pi 3.14159&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move r0 pi&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Indirect referencing==&lt;br /&gt;
This is a way of accessing a register by using another register as a pointer. Adding an additional r infront of the register turns on this behaviour. The value stored in the register being used as the pointer must be between 0 to 15, this will then point to a register from r0 to r15, higher or lower values will cause an error.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 5&amp;lt;/code&amp;gt; stores the value 5 in r0&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move rr0 10&amp;lt;/code&amp;gt; is now the same as &amp;lt;code&amp;gt;move r5 10&amp;lt;/code&amp;gt; since r0 has the value 5, rr0 points at the register r5&lt;br /&gt;
&lt;br /&gt;
Additional r&#039;s can be added to do indirect referencing multiple times in a row.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move r1 2&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move r2 3&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move rrr1 4&amp;lt;/code&amp;gt; is now the same as &amp;lt;code&amp;gt;move r3 4&amp;lt;/code&amp;gt; since r1 points at r2 which points at r3&lt;br /&gt;
&lt;br /&gt;
This also works with devices&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move r0 2&amp;lt;/code&amp;gt; stores the value 2 in r0&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;s dr0 On 1&amp;lt;/code&amp;gt; is now the same as &amp;lt;code&amp;gt;s d2 On 1&amp;lt;/code&amp;gt;, r0 has the value 2 so dr0 points at d2&lt;br /&gt;
&lt;br /&gt;
==Debugging advice==&lt;br /&gt;
The value stored in a register can easily be seen by writing it to the Setting parameter of the IC housing, this has no sideeffects, too see the value just stand close and look directly at the housing (&amp;lt;code&amp;gt;s db Setting r0&amp;lt;/code&amp;gt;).&lt;br /&gt;
&amp;lt;br&amp;gt;To check if a certain block of code is executed, use the above trick but with a number that you choose, like the line number (&amp;lt;code&amp;gt;s db Setting 137&amp;lt;/code&amp;gt;).&lt;br /&gt;
&amp;lt;br&amp;gt;The configuration card can be used to manually check the data values stored in all connected devices.&lt;br /&gt;
&lt;br /&gt;
==What a typical program looks like==&lt;br /&gt;
A program is usually written to be a continuous loop. There is often a jump out of this main loop into a subroutine when a certain condition is met (like a temperature being too high), to perform a needed task (like turning on a cooling system), subroutines almost always returns back to main loop afterwards. The &amp;lt;code&amp;gt;yield&amp;lt;/code&amp;gt; instruction will tell the program to wait for the next game tick before continuing, if it&#039;s not there the game will force the script to automatically take a break after executing 127 lines to prevent the game from freezing. The &amp;lt;code&amp;gt;beq&amp;lt;/code&amp;gt; instruction means &amp;quot;branch (jump) if equal&amp;quot; and compares the first and second numbers, if they match it will jump to the line corresponding to the third number (labels are numbers).&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
alias myDevice d0&lt;br /&gt;
alias myImportantNumber r4&lt;br /&gt;
&lt;br /&gt;
main:&lt;br /&gt;
yield&lt;br /&gt;
#this is a comment, the program will ignore it, they are often used to explain something, or to turn off instructions without deleting them&lt;br /&gt;
...&lt;br /&gt;
beq myImportantNumber 42 mySubroutine&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
mySubroutine:&lt;br /&gt;
...&lt;br /&gt;
j main&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Instructions=&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;alias&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;alias&lt;br /&gt;
:alias str r? d? # labels register or device reference with name.  When alias is applied to a device, it will affect what shows on the screws in the IC base.  (housing)&lt;br /&gt;
&amp;lt;code&amp;gt;alias vTemperature r0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;alias dAutoHydro1 d0&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;move&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;move    &lt;br /&gt;
:d s     # stores the value of s in d&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 42 # Store 42 in register 0&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;l&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;load&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;l (load)&lt;br /&gt;
:l r# d# parameter&lt;br /&gt;
Reads from a device (d#) and stores the value in a register (r#)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r0 d0 Setting&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Read from the device on d0 into register 0&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r1 d5 Pressure&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Read the pressure from a sensor&lt;br /&gt;
&lt;br /&gt;
This also works with aliases. For example:&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
alias Sensor d0 &amp;lt;br/&amp;gt;&lt;br /&gt;
l r0 Sensor Temperature&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;ls&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;load slot&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ls (load slot)&lt;br /&gt;
:ls r# d# slotNum parameter&lt;br /&gt;
Reads from a slot (slotNum) of a device (d#)  and stores the value in a register (r#)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;ls r0 d0 2 Occupied&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Read from the second slot of device on d0, stores 1 in r0 if it&#039;s occupied, 0 otherwise.&lt;br /&gt;
&lt;br /&gt;
And here is the code to read the charge of an AIMeE:&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
alias robot d0 &amp;lt;br/&amp;gt;&lt;br /&gt;
alias charge r0 &amp;lt;br/&amp;gt;&lt;br /&gt;
ls charge robot 0 Charge &lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;s&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;set&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;s (set)&lt;br /&gt;
:s d# parameter r#&lt;br /&gt;
Writes a setting to a device. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s d0 Setting r0&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;add&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;add     &lt;br /&gt;
:d s t   # calculates s + t and stores the result in d&lt;br /&gt;
&amp;lt;code&amp;gt;add r0 r1 1 # add 1 to r1 and store the result as r0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;add r0 r0 1 # increment r0 by one&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;sub&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;sub     &lt;br /&gt;
:d s t   # calculates s - t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;mul&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;mul     &lt;br /&gt;
:d s t   # calculates s * t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;div&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;div     &lt;br /&gt;
:d s t   # calculates s / t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;mod&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;mod     &lt;br /&gt;
:d s t   &lt;br /&gt;
::# calculates s mod t and stores the result in d. Note this&lt;br /&gt;
::# doesn&#039;t behave like the % operator - the result will be &lt;br /&gt;
::# positive even if the either of the operands are negative&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;slt&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;slt     &lt;br /&gt;
:d s t   # stores 1 in d if s &amp;lt; t, 0 otherwise&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;sqrt&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;sqrt    &lt;br /&gt;
:d s     # calculates sqrt(s) and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;round&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;round   &lt;br /&gt;
:d s     # finds the rounded value of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;trunc&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;trunc   &lt;br /&gt;
:d s     # finds the truncated value of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;ceil&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ceil   &lt;br /&gt;
: d s     # calculates the ceiling of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;floor&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;floor  &lt;br /&gt;
: d s     # calculates the floor of s and stores the result in d&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;max&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;max    &lt;br /&gt;
: d s t   # calculates the maximum of s and t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;min&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;min    &lt;br /&gt;
: d s t   # calculates the minimum of s and t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;abs&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;abs    &lt;br /&gt;
: d s     # calculates the absolute value of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;log&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;log    &lt;br /&gt;
: d s     # calculates the natural logarithm of s and stores the result&lt;br /&gt;
::# in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;exp&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;exp    &lt;br /&gt;
: d s     # calculates the exponential of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;rand&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;rand   &lt;br /&gt;
: d       # selects a random number uniformly at random between 0 and 1&lt;br /&gt;
::# inclusive and stores the result in d&lt;br /&gt;
&lt;br /&gt;
::# boolean arithmetic uses the C convention that 0 is false and any non-zero&lt;br /&gt;
::# value is true.&lt;br /&gt;
&amp;lt;div id=&amp;quot;and&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;and    &lt;br /&gt;
: d s t   # stores 1 in d if both s and t have non-zero values,&lt;br /&gt;
::# 0 otherwise&lt;br /&gt;
&amp;lt;div id=&amp;quot;or&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;or     &lt;br /&gt;
: d s t   # stores 1 in d if either s or t have non-zero values,&lt;br /&gt;
::# 0 otherwise&lt;br /&gt;
&amp;lt;div id=&amp;quot;xor&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;xor    &lt;br /&gt;
: d s t   # stores 1 in d if exactly one of s and t are non-zero,&lt;br /&gt;
::# 0 otherwise&lt;br /&gt;
&amp;lt;div id=&amp;quot;nor&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;nor &lt;br /&gt;
:    d s t   # stores 1 in d if both s and t equal zero, 0 otherwise&lt;br /&gt;
::# Lines are numbered starting at zero&lt;br /&gt;
&amp;lt;div id=&amp;quot;j&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;j&lt;br /&gt;
:             a # jumps to line a.&lt;br /&gt;
&amp;lt;div id=&amp;quot;bltz&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bltz&lt;br /&gt;
:      s   a # jumps to line a if s &amp;lt;  0&lt;br /&gt;
&amp;lt;div id=&amp;quot;blez&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;blez &lt;br /&gt;
:     s   a # jumps to line a if s &amp;lt;= 0&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;bgez&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bgez &lt;br /&gt;
:     s   a # jumps to line a if s &amp;gt;= 0&lt;br /&gt;
&amp;lt;div id=&amp;quot;bgtz&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bgtz&lt;br /&gt;
:      s   a # jumps to line a if s &amp;gt;  0&lt;br /&gt;
&amp;lt;div id=&amp;quot;beq&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;beq &lt;br /&gt;
:      s t a # jumps to line a if s == t&lt;br /&gt;
&amp;lt;div id=&amp;quot;bne&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bne &lt;br /&gt;
:      s t a # jumps to line a if s != t&lt;br /&gt;
&amp;lt;div id=&amp;quot;bdseal&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bdseal&lt;br /&gt;
:    d? a(r?|num) # Jump execution to line a and store current line number if device d? is set.&lt;br /&gt;
&amp;lt;code&amp;gt;bdseal d0 32 #Store line number and jump to line 32 if d0 is assigned.&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;BR&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;bdseal dThisVictim HarvestCrop #Store line in ra and jump to sub HarvestCrop if device dThisVictim is assigned.&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;yield&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;yield           &lt;br /&gt;
: 	# ceases code execution for this power tick&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;lb&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;lb&lt;br /&gt;
:      r? typeHash var batchMode # Loads var from all output network devices with provided typeHash  using provided batchMode: Average(0), Sum (1), Minimum (2), Maximum (3). Can be used word or number. Result store into r?&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;sb&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;sb&lt;br /&gt;
:      typeHash var r? # Store register r? to var on all output network devices with provided typeHash&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
; #&lt;br /&gt;
:     # The following text will be ignored during compiling; use this to create comments.&lt;br /&gt;
&lt;br /&gt;
[https://www.cs.tufts.edu/comp/140/lectures/Day_3/mips_summary.pdf Other examples]&lt;br /&gt;
&lt;br /&gt;
== Conditional functions cheatsheet ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! suffix !! description !! branch to line !! branch and store return address !! relative jump to line !! set register&lt;br /&gt;
|-&lt;br /&gt;
| prefix: ||  || b- || b-al || br- || s-&lt;br /&gt;
|-&lt;br /&gt;
|  || unconditional || j    || jal    || jr    || &lt;br /&gt;
|-&lt;br /&gt;
| -eq  || if a == b || beq  || beqal  || breq  || seq&lt;br /&gt;
|-&lt;br /&gt;
| -eqz || if a == 0 || beqz || beqzal || breqz || seqz&lt;br /&gt;
|-&lt;br /&gt;
| -ge  || if a &amp;gt;= b || bge  || bgeal  || brge  || sge&lt;br /&gt;
|-&lt;br /&gt;
| -gez || if a &amp;gt;= 0 || bgez || bgezal || brgez || sgez&lt;br /&gt;
|-&lt;br /&gt;
| -gt  || if a &amp;gt; b  || bgt  || bgtal  || brgt  || sgt&lt;br /&gt;
|-&lt;br /&gt;
| -gtz || if a &amp;gt; 0  || bgtz || bgtzal || brgtz || sgtz&lt;br /&gt;
|-&lt;br /&gt;
| -le  || if a &amp;lt;= b || ble  || bleal  || brle  || sle&lt;br /&gt;
|-&lt;br /&gt;
| -lez || if a &amp;lt;= 0 || blez || blezal || brlez || slez&lt;br /&gt;
|-&lt;br /&gt;
| -lt  || if a &amp;lt; b  || blt  || bltal  || brlt  || slt&lt;br /&gt;
|-&lt;br /&gt;
| -ltz || if a &amp;lt; 0  || bltz || bltzal || brltz || sltz&lt;br /&gt;
|-&lt;br /&gt;
| -ne  || if a != b || bne  || bneal  || brne  || sne&lt;br /&gt;
|-&lt;br /&gt;
| -nez || if a != 0 || bnez || bnezal || brnez || snez&lt;br /&gt;
|-&lt;br /&gt;
| -dns || if device d is not set          || bdns || bdnsal || brdns || sdns&lt;br /&gt;
|-&lt;br /&gt;
| -dse || if device d is set              || bdse || bdseal || brdse || sdse&lt;br /&gt;
|-&lt;br /&gt;
| -ap  || if a approximately equals b     || bap  || bapal  || brap  || sap&lt;br /&gt;
|-&lt;br /&gt;
| -apz || if a approximately equals 0     || bapz || bapzal || brapz || sapz&lt;br /&gt;
|-&lt;br /&gt;
| -na  || if a not approximately equals b || bna  || bnaal  || brna  || sna&lt;br /&gt;
|-&lt;br /&gt;
| -naz || if a not approximately equals 0 || bnaz || bnazal || brnaz || snaz&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
All &amp;lt;code&amp;gt;b-&amp;lt;/code&amp;gt; commands require target line as last argument, all &amp;lt;code&amp;gt;s-&amp;lt;/code&amp;gt; commands require register to store result as first argument. All &amp;lt;code&amp;gt;br-&amp;lt;/code&amp;gt; commands require number to jump relatively as last argument. e.g. &amp;lt;code&amp;gt;breq a b 3&amp;lt;/code&amp;gt; means if a=b then jump to 3 lines after.&lt;br /&gt;
&lt;br /&gt;
All approximate functions require additional argument denoting how close two numbers need to be considered equal. E.g.: &amp;lt;code&amp;gt;sap r0 100 101 0.01&amp;lt;/code&amp;gt; will consider 100 and 101 almost equal (not more than 1%=0.01 different) and will set r0 to 1. The exact formula is &amp;lt;code&amp;gt;if abs(a - b) &amp;lt;= max(c * max(abs(a), abs(b)), float.epsilon * 8)&amp;lt;/code&amp;gt; for &amp;lt;code&amp;gt;-ap&amp;lt;/code&amp;gt; and is similar for other approximate functions.&lt;br /&gt;
&lt;br /&gt;
==Device Variables==&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Activate&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Activate&lt;br /&gt;
:1 if device is activated (usually means running), otherwise 0&lt;br /&gt;
:&amp;lt;code&amp;gt;l r0 d0 Activate # sets r0 to 1 if on or 0 if off&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;AirRelease&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;AirRelease&lt;br /&gt;
&amp;lt;div id=&amp;quot;Charge&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Charge&lt;br /&gt;
:    The current charge the device has.&lt;br /&gt;
&amp;lt;div id=&amp;quot;CLearMemory&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;CLearMemory&lt;br /&gt;
:    When set to 1, clears the counter memory (e.g. ExportCount).  Will set itself back to 0 when triggered.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Color&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Color&lt;br /&gt;
:    0 (or lower) = Blue&lt;br /&gt;
:    1 = Grey&lt;br /&gt;
:    2 = Green&lt;br /&gt;
:    3 = Orange&lt;br /&gt;
:    4 = Red&lt;br /&gt;
:    5 = Yellow&lt;br /&gt;
:    6 = White&lt;br /&gt;
:    7 = Black&lt;br /&gt;
:    8 = Brown&lt;br /&gt;
:    9 = Khaki&lt;br /&gt;
:    10 = Pink&lt;br /&gt;
:    11 (or higher) = Purple&lt;br /&gt;
&amp;lt;div id=&amp;quot;CompletionRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;CompletionRatio&lt;br /&gt;
&amp;lt;div id=&amp;quot;ElevatorLevel&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ElevatorLevel&lt;br /&gt;
&amp;lt;div id=&amp;quot;ElevatorSpeed&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ElevatorSpeed&lt;br /&gt;
&amp;lt;div id=&amp;quot;Error&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Error&lt;br /&gt;
:	1 if device is in error state, otherwise 0&lt;br /&gt;
&amp;lt;div id=&amp;quot;ExportCount&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ExportCount&lt;br /&gt;
:    How many items exporfted since last ClearMemory.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Filtration&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Filtration&lt;br /&gt;
:	The current state of the filtration system.  For example filtration = 1 for a Hardsuit when filtration is On.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Harvest&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Harvest&lt;br /&gt;
:	Performs the harvesting action for any plant based machinery.&lt;br /&gt;
:  &amp;lt;code&amp;gt;s d0 Harvest 1 # Performs 1 harvest action on device d0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;Horizontal&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Horizontal&lt;br /&gt;
&amp;lt;div id=&amp;quot;HorizontalRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;HorizontalRatio&lt;br /&gt;
&amp;lt;div id=&amp;quot;Idle&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Idle&lt;br /&gt;
&amp;lt;div id=&amp;quot;ImportCount&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ImportCount&lt;br /&gt;
&amp;lt;div id=&amp;quot;Lock&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Lock&lt;br /&gt;
&amp;lt;div id=&amp;quot;Maximum&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Maximum&lt;br /&gt;
&amp;lt;div id=&amp;quot;Mode&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Mode&lt;br /&gt;
&amp;lt;div id=&amp;quot;On&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;On&lt;br /&gt;
&amp;lt;div id=&amp;quot;Open&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Open&lt;br /&gt;
&amp;lt;div id=&amp;quot;Output&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Output&lt;br /&gt;
&amp;lt;div id=&amp;quot;Plant&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Plant&lt;br /&gt;
:    Performs the planting operation for any plant based machinery.&lt;br /&gt;
:  &amp;lt;code&amp;gt;s d0 Plant 1 # Plants one crop in device d0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;PositionX&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PositionX&lt;br /&gt;
&amp;lt;div id=&amp;quot;PositionY&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PositionY&lt;br /&gt;
&amp;lt;div id=&amp;quot;PositionZ&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PositionZ&lt;br /&gt;
&amp;lt;div id=&amp;quot;Power&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Power&lt;br /&gt;
&amp;lt;div id=&amp;quot;PowerActual&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PowerActual&lt;br /&gt;
&amp;lt;div id=&amp;quot;PowerPotential&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PowerPotential&lt;br /&gt;
&amp;lt;div id=&amp;quot;PowerRequired&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PowerRequired&lt;br /&gt;
&amp;lt;div id=&amp;quot;Pressure&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Pressure&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureExternal&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureExternal&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureInteral&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureInteral&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureSetting&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureSetting&lt;br /&gt;
&amp;lt;div id=&amp;quot;Quantity&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Quantity&lt;br /&gt;
:	Total quantity in the device.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Ratio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Ratio&lt;br /&gt;
:	Context specific value depending on device, 0 to 1 based ratio.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioCarbonDioxide&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioCarbonDioxide&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioNitrogen&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioNitrogen&lt;br /&gt;
:	The ratio of nitrogen in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioOxygen&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioOxygen&lt;br /&gt;
:	The ratio of oxygen in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioPollutant&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioPollutant&lt;br /&gt;
:	The ratio of pollutant in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioVolatiles&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioVolatiles&lt;br /&gt;
:	The ratio of volatiles in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioWater&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioWater&lt;br /&gt;
:	The ratio of water in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Reagents&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Reagents&lt;br /&gt;
&amp;lt;div id=&amp;quot;RecipeHash&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RecipeHash&lt;br /&gt;
&amp;lt;div id=&amp;quot;RequestHash&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RequestHash&lt;br /&gt;
&amp;lt;div id=&amp;quot;RequiredPower&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RequiredPower&lt;br /&gt;
&amp;lt;div id=&amp;quot;Setting&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Setting&lt;br /&gt;
&amp;lt;div id=&amp;quot;SolarAngle&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;SolarAngle&lt;br /&gt;
:    Solar angle of the device.&lt;br /&gt;
:  &amp;lt;code&amp;gt;l r0 d0 SolarAngle # Sets r0 to the solar angle of d0.&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;Temperature&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Temperature&lt;br /&gt;
&amp;lt;div id=&amp;quot;TemperatureSettings&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;TemperatureSettings&lt;br /&gt;
&amp;lt;div id=&amp;quot;TotalMoles&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;TotalMoles&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityMagnitude&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityMagnitude&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityRelativeX&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityRelativeX&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityRelativeY&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityRelativeY&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityRelativeZ&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityRelativeZ&lt;br /&gt;
&amp;lt;div id=&amp;quot;Vertical&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Vertical&lt;br /&gt;
:	Vertical setting of the device.&lt;br /&gt;
&amp;lt;div id=&amp;quot;VerticalRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VerticalRatio&lt;br /&gt;
:	Ratio of vertical setting for device.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Volume&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Volume&lt;br /&gt;
:	Returns the device atmosphere volume&lt;br /&gt;
&lt;br /&gt;
==Slot Variables==&lt;br /&gt;
In general (always?) slots are assigned as follows.&lt;br /&gt;
:Slot 0: Import&lt;br /&gt;
:Slot 1: Export&lt;br /&gt;
:Slot 2: Inside Machine&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Occupied&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Occupied&lt;br /&gt;
:&amp;lt;code&amp;gt;ls r0 d0 2 Occupied #Stores 1 in r0 if d0 has more seeds&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;ls vOccupied dThisVictim 2 Occupied #stores 1 in vOccupied if dThisVictim has more seeds&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;OccupantHash&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;OccupantHash&lt;br /&gt;
&amp;lt;div id=&amp;quot;Quantity&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Quantity&lt;br /&gt;
&amp;lt;div id=&amp;quot;Damage&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Damage&lt;br /&gt;
&amp;lt;div id=&amp;quot;Efficiency&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Efficiency&lt;br /&gt;
&amp;lt;div id=&amp;quot;Health&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Health&lt;br /&gt;
&amp;lt;div id=&amp;quot;Growth&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Growth&lt;br /&gt;
:&amp;lt;code&amp;gt;ls r0 d0 0 Growth # Store the numerical growth stage of d0 in r0&amp;lt;/code&amp;gt; &lt;br /&gt;
&amp;lt;div id=&amp;quot;Pressure&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Pressure&lt;br /&gt;
&amp;lt;div id=&amp;quot;Temperature&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Temperature&lt;br /&gt;
&amp;lt;div id=&amp;quot;Charge&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Charge&lt;br /&gt;
&amp;lt;div id=&amp;quot;ChargeRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ChargeRatio&lt;br /&gt;
&amp;lt;div id=&amp;quot;Class&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Class&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureWaste&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureWaste&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureAir&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureAir&lt;br /&gt;
&amp;lt;div id=&amp;quot;MaxQuantity&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;MaxQuantity&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Mature&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Mature&lt;br /&gt;
:&amp;lt;code&amp;gt;ls r0 d0 0 Mature # Store 1 in r0 if d0 has a mature crop&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;ls vMature dThisVictim 0 Mature # Store 1 in vMature if dThisVictim has a mature crop&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Examples=&lt;br /&gt;
Previous examples were obsolete due to game changes, or confusing, they have been moved into the Discussions section&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Harvie automation===&lt;br /&gt;
This script uses the batch instruction &amp;lt;code&amp;gt;sb ...&amp;lt;/code&amp;gt; to control all Harvie devices on the network. But only one Harvie and one Tray will be the &#039;&#039;master&#039;&#039; and have their values read, the rest of the Harvies will repeat exactly what this unit does. Some problems with this design is that different types of crops mature at different speeds, and if seeds were manually planted and the master unit recieved the first seed, the harvesting action will be performed too early on all the other plants since they are growing a few seconds slower.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot; data-expandtext=&amp;quot;{{int:Expand, Automated Harvie Script}}&amp;quot; data-collapsetext=&amp;quot;{{int:Collapse, Automated Harvie Script}}&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
alias dHarvie d0&lt;br /&gt;
alias dTray d1&lt;br /&gt;
&lt;br /&gt;
alias rHarvieHash r8&lt;br /&gt;
alias rTrayHash r9&lt;br /&gt;
l rHarvieHash dHarvie PrefabHash&lt;br /&gt;
l rTrayHash dTray PrefabHash&lt;br /&gt;
&lt;br /&gt;
main:&lt;br /&gt;
yield&lt;br /&gt;
 #read plant data from the Tray&lt;br /&gt;
ls r0 dTray 0 Mature&lt;br /&gt;
 #harvestable plants return 1, young plants return 0&lt;br /&gt;
 #nothing planted returns -1&lt;br /&gt;
beq r0 -1 plantCrop&lt;br /&gt;
beq r0 1 harvestCrop&lt;br /&gt;
ls r0 dTray 0 Seeding&lt;br /&gt;
 #seeds available returns 1, all seeds picked returns 0&lt;br /&gt;
 #plants too young or old for seeds returns -1&lt;br /&gt;
beq r0 1 harvestCrop&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
plantCrop:&lt;br /&gt;
 #stop the planting if no seeds available&lt;br /&gt;
 #otherwise it will plant nothing repeatedly&lt;br /&gt;
ls r0 dHarvie 0 Occupied&lt;br /&gt;
beq r0 0 main&lt;br /&gt;
sb rHarvieHash Plant 1&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
harvestCrop:&lt;br /&gt;
sb rHarvieHash Harvest 1&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
### End Script ###&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
===Solar Panel 2-axis tracking===&lt;br /&gt;
This script was copied from the [[Solar_Logic_Circuits_Guide]] (code provided by bti, comments and readability changes by Fudd79)&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot; data-expandtext=&amp;quot;{{int:Expand, Solar Panel 2-axis tracking}}&amp;quot; data-collapsetext=&amp;quot;{{int:Collapse, Solar Panel 2-axis tracking}}&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# This code assumes the following:&lt;br /&gt;
# Daylight Sensor data-port points north&lt;br /&gt;
# Solar Panel data-port points east&lt;br /&gt;
&lt;br /&gt;
alias sensor d0&lt;br /&gt;
alias v_angle r0&lt;br /&gt;
alias h_angle r1&lt;br /&gt;
alias sun_up r2&lt;br /&gt;
&lt;br /&gt;
define solar_panel_hash -539224550&lt;br /&gt;
define heavy_solar_panel_hash -1545574413&lt;br /&gt;
&lt;br /&gt;
start:&lt;br /&gt;
# Check to see if sun is up&lt;br /&gt;
l sun_up sensor Activate&lt;br /&gt;
# Go to reset if it&#039;s not&lt;br /&gt;
beqz sun_up reset&lt;br /&gt;
&lt;br /&gt;
# Calculate vertical angle&lt;br /&gt;
l v_angle sensor Vertical&lt;br /&gt;
div v_angle v_angle 1.5&lt;br /&gt;
sub v_angle 50 v_angle&lt;br /&gt;
&lt;br /&gt;
# Write vertical angle to all solar panels&lt;br /&gt;
sb solar_panel_hash Vertical v_angle&lt;br /&gt;
sb heavy_solar_panel_hash Vertical v_angle&lt;br /&gt;
&lt;br /&gt;
# Obtain horizontal angle&lt;br /&gt;
l h_angle sensor Horizontal&lt;br /&gt;
&lt;br /&gt;
# Write vertical angle to all solar panels&lt;br /&gt;
sb solar_panel_hash Horizontal h_angle&lt;br /&gt;
sb heavy_solar_panel_hash Horizontal h_angle&lt;br /&gt;
&lt;br /&gt;
# Go to start again&lt;br /&gt;
yield&lt;br /&gt;
j start&lt;br /&gt;
&lt;br /&gt;
reset:&lt;br /&gt;
# Park solar panels vertically facing sunrise&lt;br /&gt;
sb solar_panel_hash Vertical 0&lt;br /&gt;
sb heavy_solar_panel_hash Vertical 0&lt;br /&gt;
# Park solar panels horizontally facing sunrise&lt;br /&gt;
sb solar_panel_hash Horizontal -90&lt;br /&gt;
sb heavy_solar_panel_hash Horizontal -90&lt;br /&gt;
# Wait 10 seconds&lt;br /&gt;
sleep 10&lt;br /&gt;
# Go to start again&lt;br /&gt;
j start&lt;br /&gt;
&lt;br /&gt;
### End Script ###&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
===Example experiment: how many lines of code are executed each tick?===&lt;br /&gt;
To determine this, a script without &amp;lt;code&amp;gt;yield&amp;lt;/code&amp;gt; will be used. It should have as few lines as possible (so no labels are used, but a reset value at the top will be needed) and count the number of lines, the IC Housing will be used to display the result.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
move r0 1   #the first line has number 0&lt;br /&gt;
add r0 r0 3&lt;br /&gt;
s db Setting r0&lt;br /&gt;
j 1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Result (the numbers appears every 0.5 seconds):&lt;br /&gt;
&amp;lt;br&amp;gt;127&lt;br /&gt;
&amp;lt;br&amp;gt;256 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;385 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;511 (+126)&lt;br /&gt;
&amp;lt;br&amp;gt;640 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;769 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;895 (+126)&lt;br /&gt;
&amp;lt;br&amp;gt;1024 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;1153 (+129)&lt;br /&gt;
&lt;br /&gt;
There is a repeating +129, +129, +126 sequence, a hint that the real value is 127. The first value also managed to count exactly 127 by sheer luck. So it appears to be 127, which also happens to be the maximum number of rows allowed in a script, which makes sense. A variation of this experiment will show that empty rows are also counted towards this number.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Links=&lt;br /&gt;
----&lt;br /&gt;
* [https://stationeering.com/tools/ic] Stationeering.com offers a programmable circuits simulator so you can develop your code without repeatedly dying in game!&lt;br /&gt;
* [https://hastebin.com/uwuhidozun.md]&lt;br /&gt;
* [http://www.easy68k.com/]&lt;br /&gt;
* [https://pastebin.com/6Uw1KSRN] syntax highlighting for IC10 MIPS for KDE kwrite/kate text editor&lt;br /&gt;
* [https://drive.google.com/file/d/1yEsJ-u94OkuMQ8K6fY7Ja1HNpLcAdjo_/view] syntax highlighting for IC10 MIPS for Notepad++&lt;br /&gt;
* [https://pastebin.com/3kmGy0NN] syntax highlighting for IC10 MIPS for Notepad++ (updated: 05/05/2021)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Index=&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|+Functions &lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
*[[#abs|abs]]&lt;br /&gt;
*[[#add|add]]&lt;br /&gt;
*[[#alias|alias]]&lt;br /&gt;
*[[#and|and]]&lt;br /&gt;
*[[#beq|beq]]&lt;br /&gt;
*[[#bgez|bgez]]&lt;br /&gt;
*[[#bgtz|bgtz]]&lt;br /&gt;
*[[#blez|blez]]&lt;br /&gt;
*[[#bltz|bltz]]&lt;br /&gt;
*[[#bne|bne]]&lt;br /&gt;
*[[#breq|breq]]&lt;br /&gt;
*[[#brgez|brgez]]&lt;br /&gt;
*[[#brgtz|brgtz]]&lt;br /&gt;
*[[#brlez|brlez]]&lt;br /&gt;
*[[#brltz|brltz]]&lt;br /&gt;
*[[#brne|brne]]&lt;br /&gt;
*[[#ceil|cell]]&lt;br /&gt;
*[[#div|div]]&lt;br /&gt;
*[[#exp|exp]]&lt;br /&gt;
*[[#floor|floor]]&lt;br /&gt;
*[[#j|j]]&lt;br /&gt;
*[[#jr|jr]]&lt;br /&gt;
*[[#l|l]]&lt;br /&gt;
*[[#log|log]]&lt;br /&gt;
*[[#ls|ls]]&lt;br /&gt;
*[[#max|max]]&lt;br /&gt;
*[[#min|min]]&lt;br /&gt;
*[[#mod|mod]]&lt;br /&gt;
*[[#move|move]]&lt;br /&gt;
*[[#mul|mul]]&lt;br /&gt;
*[[#nor|nor]]&lt;br /&gt;
*[[#or|or]]&lt;br /&gt;
*[[#rand|rand]]&lt;br /&gt;
*[[#round|round]]&lt;br /&gt;
*[[#s|s]]&lt;br /&gt;
*[[#slt|slt]]&lt;br /&gt;
*[[#sqrt|sqrt]]&lt;br /&gt;
*[[#sub|sub]]&lt;br /&gt;
*[[#trunc|trunc]]&lt;br /&gt;
*[[#xor|xor]]xor&lt;br /&gt;
*[[#yield|yield]]&lt;br /&gt;
*[[##|#]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|+Device Variables &lt;br /&gt;
&amp;lt;div  class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
*[[#Activate|Activate]]&lt;br /&gt;
*[[#AirRelease|AirRelease]]&lt;br /&gt;
*[[#Charge|Charge]]&lt;br /&gt;
*[[#CLearMemory|CLearMemory]]&lt;br /&gt;
*[[#Color|Color]]&lt;br /&gt;
*[[#CompletionRatio|CompletionRatio]]&lt;br /&gt;
*[[#ElevatorLevel|ElevatorLevel]]&lt;br /&gt;
*[[#ElevatorSpeed|ElevatorSpeed]]&lt;br /&gt;
*[[#Error|Error]]&lt;br /&gt;
*[[#ExportCount|ExportCount]]&lt;br /&gt;
*[[#Filtration|Filtration]]&lt;br /&gt;
*[[#Harvest|Harvest]]&lt;br /&gt;
*[[#Horizontal|Horizontal]]&lt;br /&gt;
*[[#HorizontalRatio|HorizontalRatio]]&lt;br /&gt;
*[[#Idle|Idle]]&lt;br /&gt;
*[[#ImportCount|ImportCount]]&lt;br /&gt;
*[[#Lock|Lock]]&lt;br /&gt;
*[[#Maximum|Maximum]]&lt;br /&gt;
*[[#Mode|Mode]]&lt;br /&gt;
*[[#On|On]]&lt;br /&gt;
*[[#Open|Open]]&lt;br /&gt;
*[[#Output|Output]]&lt;br /&gt;
*[[#Plant|Plant]]&lt;br /&gt;
*[[#PositionX|PositionX]]&lt;br /&gt;
*[[#PositionY|PositionY]]&lt;br /&gt;
*[[#PositionZ|PositionZ]]&lt;br /&gt;
*[[#Power|Power]]&lt;br /&gt;
*[[#PowerActual|PowerActual]]&lt;br /&gt;
*[[#PowerPotential|PowerPotential]]&lt;br /&gt;
*[[#PowerRequired|PowerRequired]]&lt;br /&gt;
*[[#Pressure|Pressure]]&lt;br /&gt;
*[[#PressureExternal|PressureExternal]]&lt;br /&gt;
*[[#PressureInteral|PressureInteral]]&lt;br /&gt;
*[[#PressureSetting|PressureSetting]]&lt;br /&gt;
*[[#Quantity|Quantity]]&lt;br /&gt;
*[[#Ratio|Ratio]]&lt;br /&gt;
*[[#RatioCarbonDioxide|RatioCarbonDioxide]]&lt;br /&gt;
*[[#RatioNitrogen|RatioNitrogen]]&lt;br /&gt;
*[[#RatioOxygen|RatioOxygen]]&lt;br /&gt;
*[[#RatioPollutant|RatioPollutant]]&lt;br /&gt;
*[[#RatioVolatiles|RatioVolatiles]]&lt;br /&gt;
*[[#RatioWater|RatioWater]]&lt;br /&gt;
*[[#Reagents|Reagents]]&lt;br /&gt;
*[[#RecipeHash|RecipeHash]]&lt;br /&gt;
*[[#RequestHash|RequestHash]]&lt;br /&gt;
*[[#RequiredPower|RequiredPower]]&lt;br /&gt;
*[[#Setting|Setting]]&lt;br /&gt;
*[[#SolarAngle|SolarAngle]]&lt;br /&gt;
*[[#Temperature|Temperature]]&lt;br /&gt;
*[[#TemperatureSettings|TemperatureSettings]]&lt;br /&gt;
*[[#TotalMoles|TotalMoles]]&lt;br /&gt;
*[[#VelocityMagnitude|VelocityMagnitude]]&lt;br /&gt;
*[[#VelocityRelativeX|VelocityRelativeX]]&lt;br /&gt;
*[[#VelocityRelativeY|VelocityRelativeY]]&lt;br /&gt;
*[[#VelocityRelativeZ|VelocityRelativeZ]]&lt;br /&gt;
*[[#Vertical|Vertical]]&lt;br /&gt;
*[[#VerticalRatio|VerticalRatio]]&lt;br /&gt;
*[[#Volume|Volume]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|+Slot Variables &lt;br /&gt;
&amp;lt;div  class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
*[[#Occupied|Occupied]]&lt;br /&gt;
*[[#OccupantHash|OccupantHash]]&lt;br /&gt;
*[[#Quantity|Quantity]]&lt;br /&gt;
*[[#Damage|Damage]]&lt;br /&gt;
*[[#Efficiency|Efficiency]]&lt;br /&gt;
*[[#Health|Health]]&lt;br /&gt;
*[[#Growth|Growth]]&lt;br /&gt;
*[[#Pressure|Pressure]]&lt;br /&gt;
*[[#Temperature|Temperature]]&lt;br /&gt;
*[[#Charge|Charge]]&lt;br /&gt;
*[[#ChargeRatio|ChargeRatio]]&lt;br /&gt;
*[[#Class|Class]]&lt;br /&gt;
*[[#PressureWaste|PressureWaste]]&lt;br /&gt;
*[[#PressureAir|PressureAir]]&lt;br /&gt;
*[[#MaxQuantity|MaxQuantity]]&lt;br /&gt;
*[[#Mature|Mature]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=IC10&amp;diff=11313</id>
		<title>IC10</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=IC10&amp;diff=11313"/>
		<updated>2021-10-25T22:44:29Z</updated>

		<summary type="html">&lt;p&gt;Wark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:MIPS Programming]]&lt;br /&gt;
=MIPS scripting language for IC10 housings / chips=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Text after a # will be ignored to the end of the line. The amount of white&lt;br /&gt;
# space between arguments isn&#039;t important, but new lines start a new command.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Registers==&lt;br /&gt;
The IC contains 16 registers, numbered r0-r15. Think of these as variables in other programming languages. In fact, you can name them with the alias command (see below).&lt;br /&gt;
&lt;br /&gt;
To set a register directly (such as r0=2), use the &amp;lt;b&amp;gt;move&amp;lt;/b&amp;gt; command. To read a value from a device, use l (load). To write a value back to a device, use s (set). Note that&lt;br /&gt;
like most machine languages, the &amp;lt;i&amp;gt;destination&amp;lt;/i&amp;gt; goes first, so instructions always look like: action destination source.&lt;br /&gt;
&lt;br /&gt;
There are two more registers. One called ra (return address) and one called sp (stack pointer). The ra is used by certain jump and branching instructions (those ending with -al) to remember which line in the script it should return to. The sp tracks the next index within the stack (a memory that can store up to 512 values) to be pushed (written) to or popped (read) from. Neither ra or sp is protected, their values can be changed by instructions like any other register.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 10&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Sets r0 to the value 10&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 r1&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Copies the value of r1 to r0&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r0 d0 Temperature&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Reads the Temperature parameter from device 0 and places the value in r0 (not all devices have a Temperature parameter, check the in-game stationpedia)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s d0 On r0&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Writes the value from register 0 out to On parameter of device 0 (if r0 equals 0 the device will turn off, if r0 equals 1 it will turn on)&lt;br /&gt;
&lt;br /&gt;
==Device Ports==&lt;br /&gt;
ICs can interact with up to 6 other devices via d0 - d5, as well as the device it&#039;s attached to via db. To change or set a device, use a screwdriver and adjust the device in the IC housing. You can read or set any of the device&#039;s properties, so it is possible to do things like read the pressure and oxygen content of a room on the same Device port. &lt;br /&gt;
&lt;br /&gt;
The l (load) and s (set) instructions let you read and set values on a device.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r0 d0 Temperature&amp;lt;/code&amp;gt; #Reads the temperature from an atmosphere sensor into r0.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s d1 Setting r0 &amp;lt;/code&amp;gt; # Writes r0 to the device on port 1 to the Setting variable.&lt;br /&gt;
&lt;br /&gt;
==Labels==&lt;br /&gt;
Lables are used to make it easier to jump between lines in the script. The label will have a numerical value that is the same as its line number. Even though it&#039;s possible to use a labels value for calculations, doing so is a bad idea since any changes to the code can change the line numbers of the labels.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;main:&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;j main&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Constants==&lt;br /&gt;
Instead of using a register to store a fixed value, a constant can be made. Using this name will refer to the assigned value.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;define pi 3.14159&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move r0 pi&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Indirect referencing==&lt;br /&gt;
This is a way of accessing a register by using another register as a pointer. Adding an additional r infront of the register turns on this behaviour. The value stored in the register being used as the pointer must be between 0 to 15, this will then point to a register from r0 to r15, higher or lower values will cause an error.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 5&amp;lt;/code&amp;gt; stores the value 5 in r0&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move rr0 10&amp;lt;/code&amp;gt; is now the same as &amp;lt;code&amp;gt;move r5 10&amp;lt;/code&amp;gt; since r0 has the value 5, rr0 points at the register r5&lt;br /&gt;
&lt;br /&gt;
Additional r&#039;s can be added to do indirect referencing multiple times in a row.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move r1 2&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move r2 3&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move rrr1 4&amp;lt;/code&amp;gt; is now the same as &amp;lt;code&amp;gt;move r3 4&amp;lt;/code&amp;gt; since r1 points at r2 which points at r3&lt;br /&gt;
&lt;br /&gt;
This also works with devices&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move r0 2&amp;lt;/code&amp;gt; stores the value 2 in r0&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;s dr0 On 1&amp;lt;/code&amp;gt; is now the same as &amp;lt;code&amp;gt;s d2 On 1&amp;lt;/code&amp;gt;, r0 has the value 2 so dr0 points at d2&lt;br /&gt;
&lt;br /&gt;
==Debugging advice==&lt;br /&gt;
The value stored in a register can easily be seen by writing it to the Setting parameter of the IC housing, this has no sideeffects, too see the value just stand close and look directly at the housing (&amp;lt;code&amp;gt;s db Setting r0&amp;lt;/code&amp;gt;).&lt;br /&gt;
&amp;lt;br&amp;gt;To check if a certain block of code is executed, use the above trick but with a number that you choose, like the line number (&amp;lt;code&amp;gt;s db Setting 137&amp;lt;/code&amp;gt;).&lt;br /&gt;
&amp;lt;br&amp;gt;The configuration card can be used to manually check the data values stored in all connected devices.&lt;br /&gt;
&lt;br /&gt;
==What a typical program looks like==&lt;br /&gt;
A program is usually written to be a continuous loop. There is often a jump out of this main loop into a subroutine when a certain condition is met (like a temperature being too high), to perform a needed task (like turning on a cooling system), subroutines almost always returns back to main loop afterwards. The &amp;lt;code&amp;gt;yield&amp;lt;/code&amp;gt; instruction will tell the program to wait for the next game tick before continuing, if it&#039;s not there the game will force the script to automatically take a break after executing 127 lines to prevent the game from freezing. The &amp;lt;code&amp;gt;beq&amp;lt;/code&amp;gt; instruction means &amp;quot;branch (jump) if equal&amp;quot; and compares the first and second numbers, if they match it will jump to the line corresponding to the third number (labels are numbers).&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
alias myDevice d0&lt;br /&gt;
alias myImportantNumber r4&lt;br /&gt;
&lt;br /&gt;
main:&lt;br /&gt;
yield&lt;br /&gt;
#this is a comment, the program will ignore it, they are often used to explain something, or to turn off instructions without deleting them&lt;br /&gt;
...&lt;br /&gt;
beq myImportantNumber 42 mySubroutine&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
mySubroutine:&lt;br /&gt;
...&lt;br /&gt;
j main&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Instructions=&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;alias&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;alias&lt;br /&gt;
:alias str r? d? # labels register or device reference with name.  When alias is applied to a device, it will affect what shows on the screws in the IC base.  (housing)&lt;br /&gt;
&amp;lt;code&amp;gt;alias vTemperature r0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;alias dAutoHydro1 d0&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;move&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;move    &lt;br /&gt;
:d s     # stores the value of s in d&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 42 # Store 42 in register 0&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;l&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;load&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;l (load)&lt;br /&gt;
:l r# d# parameter&lt;br /&gt;
Reads from a device (d#) and stores the value in a register (r#)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r0 d0 Setting&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Read from the device on d0 into register 0&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r1 d5 Pressure&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Read the pressure from a sensor&lt;br /&gt;
&lt;br /&gt;
This also works with aliases. For example:&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
alias Sensor d0 &amp;lt;br/&amp;gt;&lt;br /&gt;
l r0 Sensor Temperature&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;ls&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;load slot&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ls (load slot)&lt;br /&gt;
:ls r# d# slotNum parameter&lt;br /&gt;
Reads from a slot (slotNum) of a device (d#)  and stores the value in a register (r#)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;ls r0 d0 2 Occupied&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Read from the second slot of device on d0, stores 1 in r0 if it&#039;s occupied, 0 otherwise.&lt;br /&gt;
&lt;br /&gt;
And here is the code to read the charge of an AIMeE:&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
alias robot d0 &amp;lt;br/&amp;gt;&lt;br /&gt;
alias charge r0 &amp;lt;br/&amp;gt;&lt;br /&gt;
ls charge robot 0 Charge &lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;s&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;set&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;s (set)&lt;br /&gt;
:s d# parameter r#&lt;br /&gt;
Writes a setting to a device. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s d0 Setting r0&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;add&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;add     &lt;br /&gt;
:d s t   # calculates s + t and stores the result in d&lt;br /&gt;
&amp;lt;code&amp;gt;add r0 r1 1 # add 1 to r1 and store the result as r0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;add r0 r0 1 # increment r0 by one&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;sub&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;sub     &lt;br /&gt;
:d s t   # calculates s - t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;mul&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;mul     &lt;br /&gt;
:d s t   # calculates s * t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;div&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;div     &lt;br /&gt;
:d s t   # calculates s / t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;mod&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;mod     &lt;br /&gt;
:d s t   &lt;br /&gt;
::# calculates s mod t and stores the result in d. Note this&lt;br /&gt;
::# doesn&#039;t behave like the % operator - the result will be &lt;br /&gt;
::# positive even if the either of the operands are negative&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;slt&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;slt     &lt;br /&gt;
:d s t   # stores 1 in d if s &amp;lt; t, 0 otherwise&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;sqrt&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;sqrt    &lt;br /&gt;
:d s     # calculates sqrt(s) and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;round&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;round   &lt;br /&gt;
:d s     # finds the rounded value of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;trunc&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;trunc   &lt;br /&gt;
:d s     # finds the truncated value of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;ceil&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ceil   &lt;br /&gt;
: d s     # calculates the ceiling of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;floor&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;floor  &lt;br /&gt;
: d s     # calculates the floor of s and stores the result in d&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;max&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;max    &lt;br /&gt;
: d s t   # calculates the maximum of s and t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;min&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;min    &lt;br /&gt;
: d s t   # calculates the minimum of s and t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;abs&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;abs    &lt;br /&gt;
: d s     # calculates the absolute value of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;log&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;log    &lt;br /&gt;
: d s     # calculates the natural logarithm of s and stores the result&lt;br /&gt;
::# in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;exp&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;exp    &lt;br /&gt;
: d s     # calculates the exponential of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;rand&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;rand   &lt;br /&gt;
: d       # selects a random number uniformly at random between 0 and 1&lt;br /&gt;
::# inclusive and stores the result in d&lt;br /&gt;
&lt;br /&gt;
::# boolean arithmetic uses the C convention that 0 is false and any non-zero&lt;br /&gt;
::# value is true.&lt;br /&gt;
&amp;lt;div id=&amp;quot;and&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;and    &lt;br /&gt;
: d s t   # stores 1 in d if both s and t have non-zero values,&lt;br /&gt;
::# 0 otherwise&lt;br /&gt;
&amp;lt;div id=&amp;quot;or&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;or     &lt;br /&gt;
: d s t   # stores 1 in d if either s or t have non-zero values,&lt;br /&gt;
::# 0 otherwise&lt;br /&gt;
&amp;lt;div id=&amp;quot;xor&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;xor    &lt;br /&gt;
: d s t   # stores 1 in d if exactly one of s and t are non-zero,&lt;br /&gt;
::# 0 otherwise&lt;br /&gt;
&amp;lt;div id=&amp;quot;nor&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;nor &lt;br /&gt;
:    d s t   # stores 1 in d if both s and t equal zero, 0 otherwise&lt;br /&gt;
::# Lines are numbered starting at zero&lt;br /&gt;
&amp;lt;div id=&amp;quot;j&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;j&lt;br /&gt;
:             a # jumps to line a.&lt;br /&gt;
&amp;lt;div id=&amp;quot;bltz&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bltz&lt;br /&gt;
:      s   a # jumps to line a if s &amp;lt;  0&lt;br /&gt;
&amp;lt;div id=&amp;quot;blez&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;blez &lt;br /&gt;
:     s   a # jumps to line a if s &amp;lt;= 0&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;bgez&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bgez &lt;br /&gt;
:     s   a # jumps to line a if s &amp;gt;= 0&lt;br /&gt;
&amp;lt;div id=&amp;quot;bgtz&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bgtz&lt;br /&gt;
:      s   a # jumps to line a if s &amp;gt;  0&lt;br /&gt;
&amp;lt;div id=&amp;quot;beq&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;beq &lt;br /&gt;
:      s t a # jumps to line a if s == t&lt;br /&gt;
&amp;lt;div id=&amp;quot;bne&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bne &lt;br /&gt;
:      s t a # jumps to line a if s != t&lt;br /&gt;
&amp;lt;div id=&amp;quot;bdseal&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bdseal&lt;br /&gt;
:    d? a(r?|num) # Jump execution to line a and store current line number if device d? is set.&lt;br /&gt;
&amp;lt;code&amp;gt;bdseal d0 32 #Store line number and jump to line 32 if d0 is assigned.&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;BR&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;bdseal dThisVictim HarvestCrop #Store line in ra and jump to sub HarvestCrop if device dThisVictim is assigned.&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;yield&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;yield           &lt;br /&gt;
: 	# ceases code execution for this power tick&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;lb&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;lb&lt;br /&gt;
:      r? typeHash var batchMode # Loads var from all output network devices with provided typeHash  using provided batchMode: Average(0), Sum (1), Minimum (2), Maximum (3). Can be used word or number. Result store into r?&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;sb&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;sb&lt;br /&gt;
:      typeHash var r? # Store register r? to var on all output network devices with provided typeHash&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
; #&lt;br /&gt;
:     # The following text will be ignored during compiling; use this to create comments.&lt;br /&gt;
&lt;br /&gt;
[https://www.cs.tufts.edu/comp/140/lectures/Day_3/mips_summary.pdf Other examples]&lt;br /&gt;
&lt;br /&gt;
== Conditional functions cheatsheet ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! suffix !! description !! branch to line !! branch and store return address !! relative jump to line !! set register&lt;br /&gt;
|-&lt;br /&gt;
| prefix: ||  || b- || b-al || br- || s-&lt;br /&gt;
|-&lt;br /&gt;
|  || unconditional || j    || jal    || jr    || &lt;br /&gt;
|-&lt;br /&gt;
| -eq  || if a == b || beq  || beqal  || breq  || seq&lt;br /&gt;
|-&lt;br /&gt;
| -eqz || if a == 0 || beqz || beqzal || breqz || seqz&lt;br /&gt;
|-&lt;br /&gt;
| -ge  || if a &amp;gt;= b || bge  || bgeal  || brge  || sge&lt;br /&gt;
|-&lt;br /&gt;
| -gez || if a &amp;gt;= 0 || bgez || bgezal || brgez || sgez&lt;br /&gt;
|-&lt;br /&gt;
| -gt  || if a &amp;gt; b  || bgt  || bgtal  || brgt  || sgt&lt;br /&gt;
|-&lt;br /&gt;
| -gtz || if a &amp;gt; 0  || bgtz || bgtzal || brgtz || sgtz&lt;br /&gt;
|-&lt;br /&gt;
| -le  || if a &amp;lt;= b || ble  || bleal  || brle  || sle&lt;br /&gt;
|-&lt;br /&gt;
| -lez || if a &amp;lt;= 0 || blez || blezal || brlez || slez&lt;br /&gt;
|-&lt;br /&gt;
| -lt  || if a &amp;lt; b  || blt  || bltal  || brlt  || slt&lt;br /&gt;
|-&lt;br /&gt;
| -ltz || if a &amp;lt; 0  || bltz || bltzal || brltz || sltz&lt;br /&gt;
|-&lt;br /&gt;
| -ne  || if a != b || bne  || bneal  || brne  || sne&lt;br /&gt;
|-&lt;br /&gt;
| -nez || if a != 0 || bnez || bnezal || brnez || snez&lt;br /&gt;
|-&lt;br /&gt;
| -dns || if device d is not set          || bdns || bdnsal || brdns || sdns&lt;br /&gt;
|-&lt;br /&gt;
| -dse || if device d is set              || bdse || bdseal || brdse || sdse&lt;br /&gt;
|-&lt;br /&gt;
| -ap  || if a approximately equals b     || bap  || bapal  || brap  || sap&lt;br /&gt;
|-&lt;br /&gt;
| -apz || if a approximately equals 0     || bapz || bapzal || brapz || sapz&lt;br /&gt;
|-&lt;br /&gt;
| -na  || if a not approximately equals b || bna  || bnaal  || brna  || sna&lt;br /&gt;
|-&lt;br /&gt;
| -naz || if a not approximately equals 0 || bnaz || bnazal || brnaz || snaz&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
All &amp;lt;code&amp;gt;b-&amp;lt;/code&amp;gt; commands require target line as last argument, all &amp;lt;code&amp;gt;s-&amp;lt;/code&amp;gt; commands require register to store result as first argument. All &amp;lt;code&amp;gt;br-&amp;lt;/code&amp;gt; commands require number to jump relatively as last argument. e.g. &amp;lt;code&amp;gt;breq a b 3&amp;lt;/code&amp;gt; means if a=b then jump to 3 lines after.&lt;br /&gt;
&lt;br /&gt;
All approximate functions require additional argument denoting how close two numbers need to be considered equal. E.g.: &amp;lt;code&amp;gt;sap r0 100 101 0.01&amp;lt;/code&amp;gt; will consider 100 and 101 almost equal (not more than 1%=0.01 different) and will set r0 to 1. The exact formula is &amp;lt;code&amp;gt;if abs(a - b) &amp;lt;= max(c * max(abs(a), abs(b)), float.epsilon * 8)&amp;lt;/code&amp;gt; for &amp;lt;code&amp;gt;-ap&amp;lt;/code&amp;gt; and is similar for other approximate functions.&lt;br /&gt;
&lt;br /&gt;
==Device Variables==&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Activate&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Activate&lt;br /&gt;
:1 if device is activated (usually means running), otherwise 0&lt;br /&gt;
:&amp;lt;code&amp;gt;l r0 d0 Activate # sets r0 to 1 if on or 0 if off&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;AirRelease&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;AirRelease&lt;br /&gt;
&amp;lt;div id=&amp;quot;Charge&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Charge&lt;br /&gt;
:    The current charge the device has.&lt;br /&gt;
&amp;lt;div id=&amp;quot;CLearMemory&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;CLearMemory&lt;br /&gt;
:    When set to 1, clears the counter memory (e.g. ExportCount).  Will set itself back to 0 when triggered.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Color&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Color&lt;br /&gt;
:    0 (or lower) = Blue&lt;br /&gt;
:    1 = Grey&lt;br /&gt;
:    2 = Green&lt;br /&gt;
:    3 = Orange&lt;br /&gt;
:    4 = Red&lt;br /&gt;
:    5 = Yellow&lt;br /&gt;
:    6 = White&lt;br /&gt;
:    7 = Black&lt;br /&gt;
:    8 = Brown&lt;br /&gt;
:    9 = Khaki&lt;br /&gt;
:    10 = Pink&lt;br /&gt;
:    11 (or higher) = Purple&lt;br /&gt;
&amp;lt;div id=&amp;quot;CompletionRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;CompletionRatio&lt;br /&gt;
&amp;lt;div id=&amp;quot;ElevatorLevel&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ElevatorLevel&lt;br /&gt;
&amp;lt;div id=&amp;quot;ElevatorSpeed&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ElevatorSpeed&lt;br /&gt;
&amp;lt;div id=&amp;quot;Error&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Error&lt;br /&gt;
:	1 if device is in error state, otherwise 0&lt;br /&gt;
&amp;lt;div id=&amp;quot;ExportCount&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ExportCount&lt;br /&gt;
:    How many items exporfted since last ClearMemory.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Filtration&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Filtration&lt;br /&gt;
:	The current state of the filtration system.  For example filtration = 1 for a Hardsuit when filtration is On.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Harvest&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Harvest&lt;br /&gt;
:	Performs the harvesting action for any plant based machinery.&lt;br /&gt;
:  &amp;lt;code&amp;gt;s d0 Harvest 1 # Performs 1 harvest action on device d0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;Horizontal&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Horizontal&lt;br /&gt;
&amp;lt;div id=&amp;quot;HorizontalRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;HorizontalRatio&lt;br /&gt;
&amp;lt;div id=&amp;quot;Idle&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Idle&lt;br /&gt;
&amp;lt;div id=&amp;quot;ImportCount&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ImportCount&lt;br /&gt;
&amp;lt;div id=&amp;quot;Lock&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Lock&lt;br /&gt;
&amp;lt;div id=&amp;quot;Maximum&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Maximum&lt;br /&gt;
&amp;lt;div id=&amp;quot;Mode&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Mode&lt;br /&gt;
&amp;lt;div id=&amp;quot;On&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;On&lt;br /&gt;
&amp;lt;div id=&amp;quot;Open&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Open&lt;br /&gt;
&amp;lt;div id=&amp;quot;Output&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Output&lt;br /&gt;
&amp;lt;div id=&amp;quot;Plant&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Plant&lt;br /&gt;
:    Performs the planting operation for any plant based machinery.&lt;br /&gt;
:  &amp;lt;code&amp;gt;s d0 Plant 1 # Plants one crop in device d0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;PositionX&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PositionX&lt;br /&gt;
&amp;lt;div id=&amp;quot;PositionY&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PositionY&lt;br /&gt;
&amp;lt;div id=&amp;quot;PositionZ&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PositionZ&lt;br /&gt;
&amp;lt;div id=&amp;quot;Power&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Power&lt;br /&gt;
&amp;lt;div id=&amp;quot;PowerActual&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PowerActual&lt;br /&gt;
&amp;lt;div id=&amp;quot;PowerPotential&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PowerPotential&lt;br /&gt;
&amp;lt;div id=&amp;quot;PowerRequired&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PowerRequired&lt;br /&gt;
&amp;lt;div id=&amp;quot;Pressure&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Pressure&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureExternal&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureExternal&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureInteral&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureInteral&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureSetting&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureSetting&lt;br /&gt;
&amp;lt;div id=&amp;quot;Quantity&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Quantity&lt;br /&gt;
:	Total quantity in the device.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Ratio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Ratio&lt;br /&gt;
:	Context specific value depending on device, 0 to 1 based ratio.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioCarbonDioxide&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioCarbonDioxide&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioNitrogen&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioNitrogen&lt;br /&gt;
:	The ratio of nitrogen in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioOxygen&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioOxygen&lt;br /&gt;
:	The ratio of oxygen in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioPollutant&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioPollutant&lt;br /&gt;
:	The ratio of pollutant in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioVolatiles&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioVolatiles&lt;br /&gt;
:	The ratio of volatiles in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioWater&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioWater&lt;br /&gt;
:	The ratio of water in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Reagents&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Reagents&lt;br /&gt;
&amp;lt;div id=&amp;quot;RecipeHash&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RecipeHash&lt;br /&gt;
&amp;lt;div id=&amp;quot;RequestHash&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RequestHash&lt;br /&gt;
&amp;lt;div id=&amp;quot;RequiredPower&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RequiredPower&lt;br /&gt;
&amp;lt;div id=&amp;quot;Setting&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Setting&lt;br /&gt;
&amp;lt;div id=&amp;quot;SolarAngle&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;SolarAngle&lt;br /&gt;
:    Solar angle of the device.&lt;br /&gt;
:  &amp;lt;code&amp;gt;l r0 d0 SolarAngle # Sets r0 to the solar angle of d0.&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;Temperature&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Temperature&lt;br /&gt;
&amp;lt;div id=&amp;quot;TemperatureSettings&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;TemperatureSettings&lt;br /&gt;
&amp;lt;div id=&amp;quot;TotalMoles&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;TotalMoles&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityMagnitude&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityMagnitude&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityRelativeX&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityRelativeX&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityRelativeY&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityRelativeY&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityRelativeZ&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityRelativeZ&lt;br /&gt;
&amp;lt;div id=&amp;quot;Vertical&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Vertical&lt;br /&gt;
:	Vertical setting of the device.&lt;br /&gt;
&amp;lt;div id=&amp;quot;VerticalRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VerticalRatio&lt;br /&gt;
:	Ratio of vertical setting for device.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Volume&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Volume&lt;br /&gt;
:	Returns the device atmosphere volume&lt;br /&gt;
&lt;br /&gt;
==Slot Variables==&lt;br /&gt;
In general (always?) slots are assigned as follows.&lt;br /&gt;
:Slot 0: Import&lt;br /&gt;
:Slot 1: Export&lt;br /&gt;
:Slot 2: Inside Machine&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Occupied&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Occupied&lt;br /&gt;
:&amp;lt;code&amp;gt;ls r0 d0 2 Occupied #Stores 1 in r0 if d0 has more seeds&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;ls vOccupied dThisVictim 2 Occupied #stores 1 in vOccupied if dThisVictim has more seeds&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;OccupantHash&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;OccupantHash&lt;br /&gt;
&amp;lt;div id=&amp;quot;Quantity&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Quantity&lt;br /&gt;
&amp;lt;div id=&amp;quot;Damage&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Damage&lt;br /&gt;
&amp;lt;div id=&amp;quot;Efficiency&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Efficiency&lt;br /&gt;
&amp;lt;div id=&amp;quot;Health&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Health&lt;br /&gt;
&amp;lt;div id=&amp;quot;Growth&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Growth&lt;br /&gt;
:&amp;lt;code&amp;gt;ls r0 d0 0 Growth # Store the numerical growth stage of d0 in r0&amp;lt;/code&amp;gt; &lt;br /&gt;
&amp;lt;div id=&amp;quot;Pressure&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Pressure&lt;br /&gt;
&amp;lt;div id=&amp;quot;Temperature&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Temperature&lt;br /&gt;
&amp;lt;div id=&amp;quot;Charge&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Charge&lt;br /&gt;
&amp;lt;div id=&amp;quot;ChargeRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ChargeRatio&lt;br /&gt;
&amp;lt;div id=&amp;quot;Class&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Class&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureWaste&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureWaste&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureAir&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureAir&lt;br /&gt;
&amp;lt;div id=&amp;quot;MaxQuantity&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;MaxQuantity&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Mature&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Mature&lt;br /&gt;
:&amp;lt;code&amp;gt;ls r0 d0 0 Mature # Store 1 in r0 if d0 has a mature crop&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;ls vMature dThisVictim 0 Mature # Store 1 in vMature if dThisVictim has a mature crop&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Examples=&lt;br /&gt;
Previous examples were obsolete due to game changes, or confusing, they have been moved into the Discussions section&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Harvie automation===&lt;br /&gt;
This script uses the batch instruction &amp;lt;code&amp;gt;sb ...&amp;lt;/code&amp;gt; to control all Harvie devices on the network. But only one Harvie and one Tray will be the &#039;&#039;master&#039;&#039; and have their values read, the rest of the Harvies will repeat exactly what this unit does. Some problems with this design is that different types of crops mature at different speeds, and if seeds were manually planted and the master unit recieved the first seed, the harvesting action will be performed too early on all the other plants since they are growing a few seconds slower.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot; data-expandtext=&amp;quot;{{int:Expand, Automated Harvie Script}}&amp;quot; data-collapsetext=&amp;quot;{{int:Collapse, Automated Harvie Script}}&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
alias dHarvie d0&lt;br /&gt;
alias dTray d1&lt;br /&gt;
&lt;br /&gt;
alias rHarvieHash r8&lt;br /&gt;
alias rTrayHash r9&lt;br /&gt;
l rHarvieHash dHarvie PrefabHash&lt;br /&gt;
l rTrayHash dTray PrefabHash&lt;br /&gt;
&lt;br /&gt;
main:&lt;br /&gt;
yield&lt;br /&gt;
 #read plant data from the Tray&lt;br /&gt;
ls r0 dTray 0 Mature&lt;br /&gt;
 #harvestable plants return 1, young plants return 0&lt;br /&gt;
 #nothing planted returns -1&lt;br /&gt;
beq r0 -1 plantCrop&lt;br /&gt;
beq r0 1 harvestCrop&lt;br /&gt;
ls r0 dTray 0 Seeding&lt;br /&gt;
 #seeds available returns 1, all seeds picked returns 0&lt;br /&gt;
 #plants too young or old for seeds returns -1&lt;br /&gt;
beq r0 1 harvestCrop&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
plantCrop:&lt;br /&gt;
 #stop the planting if no seeds available&lt;br /&gt;
 #otherwise it will plant nothing repeatedly&lt;br /&gt;
ls r0 dHarvie 0 Occupied&lt;br /&gt;
beq r0 0 main&lt;br /&gt;
sb rHarvieHash Plant 1&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
harvestCrop:&lt;br /&gt;
sb rHarvieHash Harvest 1&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
### End Script ###&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
===Solar Panel 2-axis tracking===&lt;br /&gt;
This script was copied from the [[Solar_Logic_Circuits_Guide]] (code provided by bti, comments and readability changes by Fudd79)&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot; data-expandtext=&amp;quot;{{int:Expand, Solar Panel 2-axis tracking}}&amp;quot; data-collapsetext=&amp;quot;{{int:Collapse, Solar Panel 2-axis tracking}}&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# This code assumes the following:&lt;br /&gt;
# Daylight Sensor data-port points north&lt;br /&gt;
# Solar Panel data-port points east&lt;br /&gt;
&lt;br /&gt;
alias sensor d0&lt;br /&gt;
alias v_angle r0&lt;br /&gt;
alias h_angle r1&lt;br /&gt;
alias sun_up r2&lt;br /&gt;
&lt;br /&gt;
define solar_panel_hash -539224550&lt;br /&gt;
define heavy_solar_panel_hash -1545574413&lt;br /&gt;
&lt;br /&gt;
start:&lt;br /&gt;
# Check to see if sun is up&lt;br /&gt;
l sun_up sensor Activate&lt;br /&gt;
# Go to reset if it&#039;s not&lt;br /&gt;
beqz sun_up reset&lt;br /&gt;
&lt;br /&gt;
# Calculate vertical angle&lt;br /&gt;
l v_angle sensor Vertical&lt;br /&gt;
div v_angle v_angle 1.5&lt;br /&gt;
sub v_angle 50 v_angle&lt;br /&gt;
&lt;br /&gt;
# Write vertical angle to all solar panels&lt;br /&gt;
sb solar_panel_hash Vertical v_angle&lt;br /&gt;
sb heavy_solar_panel_hash Vertical v_angle&lt;br /&gt;
&lt;br /&gt;
# Obtain horizontal angle&lt;br /&gt;
l h_angle sensor Horizontal&lt;br /&gt;
&lt;br /&gt;
# Write vertical angle to all solar panels&lt;br /&gt;
sb solar_panel_hash Horizontal h_angle&lt;br /&gt;
sb heavy_solar_panel_hash Horizontal h_angle&lt;br /&gt;
&lt;br /&gt;
# Go to start again&lt;br /&gt;
yield&lt;br /&gt;
j start&lt;br /&gt;
&lt;br /&gt;
reset:&lt;br /&gt;
# Park solar panels vertically facing sunrise&lt;br /&gt;
sb solar_panel_hash Vertical 0&lt;br /&gt;
sb heavy_solar_panel_hash Vertical 0&lt;br /&gt;
# Park solar panels horizontally facing sunrise&lt;br /&gt;
sb solar_panel_hash Horizontal -90&lt;br /&gt;
sb heavy_solar_panel_hash Horizontal -90&lt;br /&gt;
# Wait 10 seconds&lt;br /&gt;
sleep 10&lt;br /&gt;
# Go to start again&lt;br /&gt;
j start&lt;br /&gt;
&lt;br /&gt;
### End Script ###&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
===Example experiment: how many lines of code are executed each tick?===&lt;br /&gt;
To determine this, a script without &amp;lt;code&amp;gt;yield&amp;lt;/code&amp;gt; will be used. It should have as few lines as possible (so no labels are used, but a reset value at the top will be needed) and count the number of lines, the IC Housing will be used to display the result.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
move r0 1   #the first line has number 0&lt;br /&gt;
add r0 r0 3&lt;br /&gt;
s db Setting r0&lt;br /&gt;
j 1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Result (the numbers appears every 0.5 seconds):&lt;br /&gt;
&amp;lt;br&amp;gt;127&lt;br /&gt;
&amp;lt;br&amp;gt;256 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;385 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;511 (+126)&lt;br /&gt;
&amp;lt;br&amp;gt;640 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;769 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;895 (+126)&lt;br /&gt;
&amp;lt;br&amp;gt;1024 (+129)&lt;br /&gt;
&amp;lt;br&amp;gt;1153 (+129)&lt;br /&gt;
&lt;br /&gt;
There is a repeating +129, +129, +126 sequence, the average of that is 127. The first also managed to count exactly 127 by sheer luck. So it seems to be 127, which also happens to be the maximum number of rows allowed in a script. A variation of this experiment will show that empty rows are also counted as rows.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Links=&lt;br /&gt;
----&lt;br /&gt;
* [https://stationeering.com/tools/ic] Stationeering.com offers a programmable circuits simulator so you can develop your code without repeatedly dying in game!&lt;br /&gt;
* [https://hastebin.com/uwuhidozun.md]&lt;br /&gt;
* [http://www.easy68k.com/]&lt;br /&gt;
* [https://pastebin.com/6Uw1KSRN] syntax highlighting for IC10 MIPS for KDE kwrite/kate text editor&lt;br /&gt;
* [https://drive.google.com/file/d/1yEsJ-u94OkuMQ8K6fY7Ja1HNpLcAdjo_/view] syntax highlighting for IC10 MIPS for Notepad++&lt;br /&gt;
* [https://pastebin.com/3kmGy0NN] syntax highlighting for IC10 MIPS for Notepad++ (updated: 05/05/2021)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Index=&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|+Functions &lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
*[[#abs|abs]]&lt;br /&gt;
*[[#add|add]]&lt;br /&gt;
*[[#alias|alias]]&lt;br /&gt;
*[[#and|and]]&lt;br /&gt;
*[[#beq|beq]]&lt;br /&gt;
*[[#bgez|bgez]]&lt;br /&gt;
*[[#bgtz|bgtz]]&lt;br /&gt;
*[[#blez|blez]]&lt;br /&gt;
*[[#bltz|bltz]]&lt;br /&gt;
*[[#bne|bne]]&lt;br /&gt;
*[[#breq|breq]]&lt;br /&gt;
*[[#brgez|brgez]]&lt;br /&gt;
*[[#brgtz|brgtz]]&lt;br /&gt;
*[[#brlez|brlez]]&lt;br /&gt;
*[[#brltz|brltz]]&lt;br /&gt;
*[[#brne|brne]]&lt;br /&gt;
*[[#ceil|cell]]&lt;br /&gt;
*[[#div|div]]&lt;br /&gt;
*[[#exp|exp]]&lt;br /&gt;
*[[#floor|floor]]&lt;br /&gt;
*[[#j|j]]&lt;br /&gt;
*[[#jr|jr]]&lt;br /&gt;
*[[#l|l]]&lt;br /&gt;
*[[#log|log]]&lt;br /&gt;
*[[#ls|ls]]&lt;br /&gt;
*[[#max|max]]&lt;br /&gt;
*[[#min|min]]&lt;br /&gt;
*[[#mod|mod]]&lt;br /&gt;
*[[#move|move]]&lt;br /&gt;
*[[#mul|mul]]&lt;br /&gt;
*[[#nor|nor]]&lt;br /&gt;
*[[#or|or]]&lt;br /&gt;
*[[#rand|rand]]&lt;br /&gt;
*[[#round|round]]&lt;br /&gt;
*[[#s|s]]&lt;br /&gt;
*[[#slt|slt]]&lt;br /&gt;
*[[#sqrt|sqrt]]&lt;br /&gt;
*[[#sub|sub]]&lt;br /&gt;
*[[#trunc|trunc]]&lt;br /&gt;
*[[#xor|xor]]xor&lt;br /&gt;
*[[#yield|yield]]&lt;br /&gt;
*[[##|#]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|+Device Variables &lt;br /&gt;
&amp;lt;div  class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
*[[#Activate|Activate]]&lt;br /&gt;
*[[#AirRelease|AirRelease]]&lt;br /&gt;
*[[#Charge|Charge]]&lt;br /&gt;
*[[#CLearMemory|CLearMemory]]&lt;br /&gt;
*[[#Color|Color]]&lt;br /&gt;
*[[#CompletionRatio|CompletionRatio]]&lt;br /&gt;
*[[#ElevatorLevel|ElevatorLevel]]&lt;br /&gt;
*[[#ElevatorSpeed|ElevatorSpeed]]&lt;br /&gt;
*[[#Error|Error]]&lt;br /&gt;
*[[#ExportCount|ExportCount]]&lt;br /&gt;
*[[#Filtration|Filtration]]&lt;br /&gt;
*[[#Harvest|Harvest]]&lt;br /&gt;
*[[#Horizontal|Horizontal]]&lt;br /&gt;
*[[#HorizontalRatio|HorizontalRatio]]&lt;br /&gt;
*[[#Idle|Idle]]&lt;br /&gt;
*[[#ImportCount|ImportCount]]&lt;br /&gt;
*[[#Lock|Lock]]&lt;br /&gt;
*[[#Maximum|Maximum]]&lt;br /&gt;
*[[#Mode|Mode]]&lt;br /&gt;
*[[#On|On]]&lt;br /&gt;
*[[#Open|Open]]&lt;br /&gt;
*[[#Output|Output]]&lt;br /&gt;
*[[#Plant|Plant]]&lt;br /&gt;
*[[#PositionX|PositionX]]&lt;br /&gt;
*[[#PositionY|PositionY]]&lt;br /&gt;
*[[#PositionZ|PositionZ]]&lt;br /&gt;
*[[#Power|Power]]&lt;br /&gt;
*[[#PowerActual|PowerActual]]&lt;br /&gt;
*[[#PowerPotential|PowerPotential]]&lt;br /&gt;
*[[#PowerRequired|PowerRequired]]&lt;br /&gt;
*[[#Pressure|Pressure]]&lt;br /&gt;
*[[#PressureExternal|PressureExternal]]&lt;br /&gt;
*[[#PressureInteral|PressureInteral]]&lt;br /&gt;
*[[#PressureSetting|PressureSetting]]&lt;br /&gt;
*[[#Quantity|Quantity]]&lt;br /&gt;
*[[#Ratio|Ratio]]&lt;br /&gt;
*[[#RatioCarbonDioxide|RatioCarbonDioxide]]&lt;br /&gt;
*[[#RatioNitrogen|RatioNitrogen]]&lt;br /&gt;
*[[#RatioOxygen|RatioOxygen]]&lt;br /&gt;
*[[#RatioPollutant|RatioPollutant]]&lt;br /&gt;
*[[#RatioVolatiles|RatioVolatiles]]&lt;br /&gt;
*[[#RatioWater|RatioWater]]&lt;br /&gt;
*[[#Reagents|Reagents]]&lt;br /&gt;
*[[#RecipeHash|RecipeHash]]&lt;br /&gt;
*[[#RequestHash|RequestHash]]&lt;br /&gt;
*[[#RequiredPower|RequiredPower]]&lt;br /&gt;
*[[#Setting|Setting]]&lt;br /&gt;
*[[#SolarAngle|SolarAngle]]&lt;br /&gt;
*[[#Temperature|Temperature]]&lt;br /&gt;
*[[#TemperatureSettings|TemperatureSettings]]&lt;br /&gt;
*[[#TotalMoles|TotalMoles]]&lt;br /&gt;
*[[#VelocityMagnitude|VelocityMagnitude]]&lt;br /&gt;
*[[#VelocityRelativeX|VelocityRelativeX]]&lt;br /&gt;
*[[#VelocityRelativeY|VelocityRelativeY]]&lt;br /&gt;
*[[#VelocityRelativeZ|VelocityRelativeZ]]&lt;br /&gt;
*[[#Vertical|Vertical]]&lt;br /&gt;
*[[#VerticalRatio|VerticalRatio]]&lt;br /&gt;
*[[#Volume|Volume]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|+Slot Variables &lt;br /&gt;
&amp;lt;div  class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
*[[#Occupied|Occupied]]&lt;br /&gt;
*[[#OccupantHash|OccupantHash]]&lt;br /&gt;
*[[#Quantity|Quantity]]&lt;br /&gt;
*[[#Damage|Damage]]&lt;br /&gt;
*[[#Efficiency|Efficiency]]&lt;br /&gt;
*[[#Health|Health]]&lt;br /&gt;
*[[#Growth|Growth]]&lt;br /&gt;
*[[#Pressure|Pressure]]&lt;br /&gt;
*[[#Temperature|Temperature]]&lt;br /&gt;
*[[#Charge|Charge]]&lt;br /&gt;
*[[#ChargeRatio|ChargeRatio]]&lt;br /&gt;
*[[#Class|Class]]&lt;br /&gt;
*[[#PressureWaste|PressureWaste]]&lt;br /&gt;
*[[#PressureAir|PressureAir]]&lt;br /&gt;
*[[#MaxQuantity|MaxQuantity]]&lt;br /&gt;
*[[#Mature|Mature]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=IC10&amp;diff=11311</id>
		<title>IC10</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=IC10&amp;diff=11311"/>
		<updated>2021-10-25T20:02:02Z</updated>

		<summary type="html">&lt;p&gt;Wark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:MIPS Programming]]&lt;br /&gt;
=MIPS scripting language for IC10 housings / chips=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Text after a # will be ignored to the end of the line. The amount of white&lt;br /&gt;
# space between arguments isn&#039;t important, but new lines start a new command.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Registers==&lt;br /&gt;
The IC contains 16 registers, numbered r0-r15. Think of these as variables in other programming languages. In fact, you can name them with the alias command (see below).&lt;br /&gt;
&lt;br /&gt;
To set a register directly (such as r0=2), use the &amp;lt;b&amp;gt;move&amp;lt;/b&amp;gt; command. To read a value from a device, use l (load). To write a value back to a device, use s (set). Note that&lt;br /&gt;
like most machine languages, the &amp;lt;i&amp;gt;destination&amp;lt;/i&amp;gt; goes first, so instructions always look like: action destination source.&lt;br /&gt;
&lt;br /&gt;
There are two more registers. One called ra (return address) and one called sp (stack pointer). The ra is used by certain jump and branching instructions (those ending with -al) to remember which line in the script it should return to. The sp tracks the next index within the stack (a memory that can store up to 512 values) to be pushed (written) to or popped (read) from. Neither ra or sp is protected, their values can be changed by instructions like any other register.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 10&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Sets r0 to the value 10&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 r1&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Copies the value of r1 to r0&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r0 d0 Temperature&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Reads the Temperature parameter from device 0 and places the value in r0 (not all devices have a Temperature parameter, check the in-game stationpedia)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s d0 On r0&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Writes the value from register 0 out to On parameter of device 0 (if r0 equals 0 the device will turn off, if r0 equals 1 it will turn on)&lt;br /&gt;
&lt;br /&gt;
==Device Ports==&lt;br /&gt;
ICs can interact with up to 6 other devices via d0 - d5, as well as the device it&#039;s attached to via db. To change or set a device, use a screwdriver and adjust the device in the IC housing. You can read or set any of the device&#039;s properties, so it is possible to do things like read the pressure and oxygen content of a room on the same Device port. &lt;br /&gt;
&lt;br /&gt;
The l (load) and s (set) instructions let you read and set values on a device.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r0 d0 Temperature&amp;lt;/code&amp;gt; #Reads the temperature from an atmosphere sensor into r0.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s d1 Setting r0 &amp;lt;/code&amp;gt; # Writes r0 to the device on port 1 to the Setting variable.&lt;br /&gt;
&lt;br /&gt;
==Labels==&lt;br /&gt;
Lables are used to make it easier to jump between lines in the script. The label will have a numerical value that is the same as its line number. Even though it&#039;s possible to use a labels value for calculations, doing so is a bad idea since any changes to the code can change the line numbers of the labels.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;main:&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;j main&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Constants==&lt;br /&gt;
Instead of using a register to store a fixed value, a constant can be made. Using this name will refer to the assigned value.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;define pi 3.14159&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move r0 pi&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Indirect referencing==&lt;br /&gt;
This is a way of accessing a register by using another register as a pointer. Adding an additional r infront of the register turns on this behaviour. The value stored in the register being used as the pointer must be between 0 to 15, this will then point to a register from r0 to r15, higher or lower values will cause an error.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 5&amp;lt;/code&amp;gt; stores the value 5 in r0&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move rr0 10&amp;lt;/code&amp;gt; is now the same as &amp;lt;code&amp;gt;move r5 10&amp;lt;/code&amp;gt; since r0 has the value 5, rr0 points at the register r5&lt;br /&gt;
&lt;br /&gt;
Additional r&#039;s can be added to do indirect referencing multiple times in a row.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move r1 2&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move r2 3&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move rrr1 4&amp;lt;/code&amp;gt; is now the same as &amp;lt;code&amp;gt;move r3 4&amp;lt;/code&amp;gt; since r1 points at r2 which points at r3&lt;br /&gt;
&lt;br /&gt;
This also works with devices&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move r0 2&amp;lt;/code&amp;gt; stores the value 2 in r0&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;s dr0 On 1&amp;lt;/code&amp;gt; is now the same as &amp;lt;code&amp;gt;s d2 On 1&amp;lt;/code&amp;gt;, r0 has the value 2 so dr0 points at d2&lt;br /&gt;
&lt;br /&gt;
==Debugging advice==&lt;br /&gt;
The value stored in a register can easily be seen by writing it to the Setting parameter of the IC housing, this has no sideeffects, too see the value just stand close and look directly at the housing (&amp;lt;code&amp;gt;s db Setting r0&amp;lt;/code&amp;gt;).&lt;br /&gt;
&amp;lt;br&amp;gt;To check if a certain block of code is executed, use the above trick but with a number that you choose, like the line number (&amp;lt;code&amp;gt;s db Setting 137&amp;lt;/code&amp;gt;).&lt;br /&gt;
&amp;lt;br&amp;gt;The configuration card can be used to manually check the data values stored in all connected devices.&lt;br /&gt;
&lt;br /&gt;
==What a typical program looks like==&lt;br /&gt;
A program is usually written to be a continuous loop. There is often a jump out of this main loop into a subroutine when a certain condition is met (like a temperature being too high), to perform a needed task (like turning on a cooling system), subroutines almost always returns back to main loop afterwards. The &amp;lt;code&amp;gt;yield&amp;lt;/code&amp;gt; instruction will tell the program to wait to the next game tick, the game won&#039;t freeze without it but it&#039;s good practice. The &amp;lt;code&amp;gt;beq&amp;lt;/code&amp;gt; instruction means &amp;quot;branch (jump) if equal&amp;quot; and compares the first and second numbers, if they match it will jump to the line corresponding to the third number (labels are numbers).&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
alias myDevice d0&lt;br /&gt;
alias myImportantNumber r4&lt;br /&gt;
&lt;br /&gt;
main:&lt;br /&gt;
yield&lt;br /&gt;
#this is a comment, the program will ignore it, they are often used to explain something, or to turn off instructions without deleting them&lt;br /&gt;
...&lt;br /&gt;
beq myImportantNumber 42 mySubroutine&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
mySubroutine:&lt;br /&gt;
...&lt;br /&gt;
j main&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Instructions=&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;alias&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;alias&lt;br /&gt;
:alias str r? d? # labels register or device reference with name.  When alias is applied to a device, it will affect what shows on the screws in the IC base.  (housing)&lt;br /&gt;
&amp;lt;code&amp;gt;alias vTemperature r0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;alias dAutoHydro1 d0&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;move&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;move    &lt;br /&gt;
:d s     # stores the value of s in d&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 42 # Store 42 in register 0&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;l&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;load&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;l (load)&lt;br /&gt;
:l r# d# parameter&lt;br /&gt;
Reads from a device (d#) and stores the value in a register (r#)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r0 d0 Setting&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Read from the device on d0 into register 0&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r1 d5 Pressure&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Read the pressure from a sensor&lt;br /&gt;
&lt;br /&gt;
This also works with aliases. For example:&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
alias Sensor d0 &amp;lt;br/&amp;gt;&lt;br /&gt;
l r0 Sensor Temperature&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;ls&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;load slot&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ls (load slot)&lt;br /&gt;
:ls r# d# slotNum parameter&lt;br /&gt;
Reads from a slot (slotNum) of a device (d#)  and stores the value in a register (r#)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;ls r0 d0 2 Occupied&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Read from the second slot of device on d0, stores 1 in r0 if it&#039;s occupied, 0 otherwise.&lt;br /&gt;
&lt;br /&gt;
And here is the code to read the charge of an AIMeE:&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
alias robot d0 &amp;lt;br/&amp;gt;&lt;br /&gt;
alias charge r0 &amp;lt;br/&amp;gt;&lt;br /&gt;
ls charge robot 0 Charge &lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;s&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;set&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;s (set)&lt;br /&gt;
:s d# parameter r#&lt;br /&gt;
Writes a setting to a device. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s d0 Setting r0&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;add&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;add     &lt;br /&gt;
:d s t   # calculates s + t and stores the result in d&lt;br /&gt;
&amp;lt;code&amp;gt;add r0 r1 1 # add 1 to r1 and store the result as r0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;add r0 r0 1 # increment r0 by one&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;sub&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;sub     &lt;br /&gt;
:d s t   # calculates s - t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;mul&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;mul     &lt;br /&gt;
:d s t   # calculates s * t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;div&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;div     &lt;br /&gt;
:d s t   # calculates s / t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;mod&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;mod     &lt;br /&gt;
:d s t   &lt;br /&gt;
::# calculates s mod t and stores the result in d. Note this&lt;br /&gt;
::# doesn&#039;t behave like the % operator - the result will be &lt;br /&gt;
::# positive even if the either of the operands are negative&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;slt&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;slt     &lt;br /&gt;
:d s t   # stores 1 in d if s &amp;lt; t, 0 otherwise&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;sqrt&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;sqrt    &lt;br /&gt;
:d s     # calculates sqrt(s) and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;round&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;round   &lt;br /&gt;
:d s     # finds the rounded value of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;trunc&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;trunc   &lt;br /&gt;
:d s     # finds the truncated value of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;ceil&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ceil   &lt;br /&gt;
: d s     # calculates the ceiling of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;floor&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;floor  &lt;br /&gt;
: d s     # calculates the floor of s and stores the result in d&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;max&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;max    &lt;br /&gt;
: d s t   # calculates the maximum of s and t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;min&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;min    &lt;br /&gt;
: d s t   # calculates the minimum of s and t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;abs&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;abs    &lt;br /&gt;
: d s     # calculates the absolute value of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;log&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;log    &lt;br /&gt;
: d s     # calculates the natural logarithm of s and stores the result&lt;br /&gt;
::# in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;exp&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;exp    &lt;br /&gt;
: d s     # calculates the exponential of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;rand&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;rand   &lt;br /&gt;
: d       # selects a random number uniformly at random between 0 and 1&lt;br /&gt;
::# inclusive and stores the result in d&lt;br /&gt;
&lt;br /&gt;
::# boolean arithmetic uses the C convention that 0 is false and any non-zero&lt;br /&gt;
::# value is true.&lt;br /&gt;
&amp;lt;div id=&amp;quot;and&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;and    &lt;br /&gt;
: d s t   # stores 1 in d if both s and t have non-zero values,&lt;br /&gt;
::# 0 otherwise&lt;br /&gt;
&amp;lt;div id=&amp;quot;or&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;or     &lt;br /&gt;
: d s t   # stores 1 in d if either s or t have non-zero values,&lt;br /&gt;
::# 0 otherwise&lt;br /&gt;
&amp;lt;div id=&amp;quot;xor&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;xor    &lt;br /&gt;
: d s t   # stores 1 in d if exactly one of s and t are non-zero,&lt;br /&gt;
::# 0 otherwise&lt;br /&gt;
&amp;lt;div id=&amp;quot;nor&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;nor &lt;br /&gt;
:    d s t   # stores 1 in d if both s and t equal zero, 0 otherwise&lt;br /&gt;
::# Lines are numbered starting at zero&lt;br /&gt;
&amp;lt;div id=&amp;quot;j&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;j&lt;br /&gt;
:             a # jumps to line a.&lt;br /&gt;
&amp;lt;div id=&amp;quot;bltz&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bltz&lt;br /&gt;
:      s   a # jumps to line a if s &amp;lt;  0&lt;br /&gt;
&amp;lt;div id=&amp;quot;blez&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;blez &lt;br /&gt;
:     s   a # jumps to line a if s &amp;lt;= 0&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;bgez&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bgez &lt;br /&gt;
:     s   a # jumps to line a if s &amp;gt;= 0&lt;br /&gt;
&amp;lt;div id=&amp;quot;bgtz&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bgtz&lt;br /&gt;
:      s   a # jumps to line a if s &amp;gt;  0&lt;br /&gt;
&amp;lt;div id=&amp;quot;beq&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;beq &lt;br /&gt;
:      s t a # jumps to line a if s == t&lt;br /&gt;
&amp;lt;div id=&amp;quot;bne&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bne &lt;br /&gt;
:      s t a # jumps to line a if s != t&lt;br /&gt;
&amp;lt;div id=&amp;quot;bdseal&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bdseal&lt;br /&gt;
:    d? a(r?|num) # Jump execution to line a and store current line number if device d? is set.&lt;br /&gt;
&amp;lt;code&amp;gt;bdseal d0 32 #Store line number and jump to line 32 if d0 is assigned.&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;BR&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;bdseal dThisVictim HarvestCrop #Store line in ra and jump to sub HarvestCrop if device dThisVictim is assigned.&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;yield&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;yield           &lt;br /&gt;
: 	# ceases code execution for this power tick&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;lb&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;lb&lt;br /&gt;
:      r? typeHash var batchMode # Loads var from all output network devices with provided typeHash  using provided batchMode: Average(0), Sum (1), Minimum (2), Maximum (3). Can be used word or number. Result store into r?&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;sb&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;sb&lt;br /&gt;
:      typeHash var r? # Store register r? to var on all output network devices with provided typeHash&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
; #&lt;br /&gt;
:     # The following text will be ignored during compiling; use this to create comments.&lt;br /&gt;
&lt;br /&gt;
[https://www.cs.tufts.edu/comp/140/lectures/Day_3/mips_summary.pdf Other examples]&lt;br /&gt;
&lt;br /&gt;
== Conditional functions cheatsheet ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! suffix !! description !! branch to line !! branch and store return address !! relative jump to line !! set register&lt;br /&gt;
|-&lt;br /&gt;
| prefix: ||  || b- || b-al || br- || s-&lt;br /&gt;
|-&lt;br /&gt;
|  || unconditional || j    || jal    || jr    || &lt;br /&gt;
|-&lt;br /&gt;
| -eq  || if a == b || beq  || beqal  || breq  || seq&lt;br /&gt;
|-&lt;br /&gt;
| -eqz || if a == 0 || beqz || beqzal || breqz || seqz&lt;br /&gt;
|-&lt;br /&gt;
| -ge  || if a &amp;gt;= b || bge  || bgeal  || brge  || sge&lt;br /&gt;
|-&lt;br /&gt;
| -gez || if a &amp;gt;= 0 || bgez || bgezal || brgez || sgez&lt;br /&gt;
|-&lt;br /&gt;
| -gt  || if a &amp;gt; b  || bgt  || bgtal  || brgt  || sgt&lt;br /&gt;
|-&lt;br /&gt;
| -gtz || if a &amp;gt; 0  || bgtz || bgtzal || brgtz || sgtz&lt;br /&gt;
|-&lt;br /&gt;
| -le  || if a &amp;lt;= b || ble  || bleal  || brle  || sle&lt;br /&gt;
|-&lt;br /&gt;
| -lez || if a &amp;lt;= 0 || blez || blezal || brlez || slez&lt;br /&gt;
|-&lt;br /&gt;
| -lt  || if a &amp;lt; b  || blt  || bltal  || brlt  || slt&lt;br /&gt;
|-&lt;br /&gt;
| -ltz || if a &amp;lt; 0  || bltz || bltzal || brltz || sltz&lt;br /&gt;
|-&lt;br /&gt;
| -ne  || if a != b || bne  || bneal  || brne  || sne&lt;br /&gt;
|-&lt;br /&gt;
| -nez || if a != 0 || bnez || bnezal || brnez || snez&lt;br /&gt;
|-&lt;br /&gt;
| -dns || if device d is not set          || bdns || bdnsal || brdns || sdns&lt;br /&gt;
|-&lt;br /&gt;
| -dse || if device d is set              || bdse || bdseal || brdse || sdse&lt;br /&gt;
|-&lt;br /&gt;
| -ap  || if a approximately equals b     || bap  || bapal  || brap  || sap&lt;br /&gt;
|-&lt;br /&gt;
| -apz || if a approximately equals 0     || bapz || bapzal || brapz || sapz&lt;br /&gt;
|-&lt;br /&gt;
| -na  || if a not approximately equals b || bna  || bnaal  || brna  || sna&lt;br /&gt;
|-&lt;br /&gt;
| -naz || if a not approximately equals 0 || bnaz || bnazal || brnaz || snaz&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
All &amp;lt;code&amp;gt;b-&amp;lt;/code&amp;gt; commands require target line as last argument, all &amp;lt;code&amp;gt;s-&amp;lt;/code&amp;gt; commands require register to store result as first argument. All &amp;lt;code&amp;gt;br-&amp;lt;/code&amp;gt; commands require number to jump relatively as last argument. e.g. &amp;lt;code&amp;gt;breq a b 3&amp;lt;/code&amp;gt; means if a=b then jump to 3 lines after.&lt;br /&gt;
&lt;br /&gt;
All approximate functions require additional argument denoting how close two numbers need to be considered equal. E.g.: &amp;lt;code&amp;gt;sap r0 100 101 0.01&amp;lt;/code&amp;gt; will consider 100 and 101 almost equal (not more than 1%=0.01 different) and will set r0 to 1. The exact formula is &amp;lt;code&amp;gt;if abs(a - b) &amp;lt;= max(c * max(abs(a), abs(b)), float.epsilon * 8)&amp;lt;/code&amp;gt; for &amp;lt;code&amp;gt;-ap&amp;lt;/code&amp;gt; and is similar for other approximate functions.&lt;br /&gt;
&lt;br /&gt;
==Device Variables==&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Activate&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Activate&lt;br /&gt;
:1 if device is activated (usually means running), otherwise 0&lt;br /&gt;
:&amp;lt;code&amp;gt;l r0 d0 Activate # sets r0 to 1 if on or 0 if off&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;AirRelease&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;AirRelease&lt;br /&gt;
&amp;lt;div id=&amp;quot;Charge&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Charge&lt;br /&gt;
:    The current charge the device has.&lt;br /&gt;
&amp;lt;div id=&amp;quot;CLearMemory&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;CLearMemory&lt;br /&gt;
:    When set to 1, clears the counter memory (e.g. ExportCount).  Will set itself back to 0 when triggered.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Color&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Color&lt;br /&gt;
:    0 (or lower) = Blue&lt;br /&gt;
:    1 = Grey&lt;br /&gt;
:    2 = Green&lt;br /&gt;
:    3 = Orange&lt;br /&gt;
:    4 = Red&lt;br /&gt;
:    5 = Yellow&lt;br /&gt;
:    6 = White&lt;br /&gt;
:    7 = Black&lt;br /&gt;
:    8 = Brown&lt;br /&gt;
:    9 = Khaki&lt;br /&gt;
:    10 = Pink&lt;br /&gt;
:    11 (or higher) = Purple&lt;br /&gt;
&amp;lt;div id=&amp;quot;CompletionRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;CompletionRatio&lt;br /&gt;
&amp;lt;div id=&amp;quot;ElevatorLevel&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ElevatorLevel&lt;br /&gt;
&amp;lt;div id=&amp;quot;ElevatorSpeed&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ElevatorSpeed&lt;br /&gt;
&amp;lt;div id=&amp;quot;Error&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Error&lt;br /&gt;
:	1 if device is in error state, otherwise 0&lt;br /&gt;
&amp;lt;div id=&amp;quot;ExportCount&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ExportCount&lt;br /&gt;
:    How many items exporfted since last ClearMemory.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Filtration&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Filtration&lt;br /&gt;
:	The current state of the filtration system.  For example filtration = 1 for a Hardsuit when filtration is On.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Harvest&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Harvest&lt;br /&gt;
:	Performs the harvesting action for any plant based machinery.&lt;br /&gt;
:  &amp;lt;code&amp;gt;s d0 Harvest 1 # Performs 1 harvest action on device d0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;Horizontal&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Horizontal&lt;br /&gt;
&amp;lt;div id=&amp;quot;HorizontalRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;HorizontalRatio&lt;br /&gt;
&amp;lt;div id=&amp;quot;Idle&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Idle&lt;br /&gt;
&amp;lt;div id=&amp;quot;ImportCount&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ImportCount&lt;br /&gt;
&amp;lt;div id=&amp;quot;Lock&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Lock&lt;br /&gt;
&amp;lt;div id=&amp;quot;Maximum&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Maximum&lt;br /&gt;
&amp;lt;div id=&amp;quot;Mode&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Mode&lt;br /&gt;
&amp;lt;div id=&amp;quot;On&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;On&lt;br /&gt;
&amp;lt;div id=&amp;quot;Open&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Open&lt;br /&gt;
&amp;lt;div id=&amp;quot;Output&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Output&lt;br /&gt;
&amp;lt;div id=&amp;quot;Plant&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Plant&lt;br /&gt;
:    Performs the planting operation for any plant based machinery.&lt;br /&gt;
:  &amp;lt;code&amp;gt;s d0 Plant 1 # Plants one crop in device d0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;PositionX&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PositionX&lt;br /&gt;
&amp;lt;div id=&amp;quot;PositionY&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PositionY&lt;br /&gt;
&amp;lt;div id=&amp;quot;PositionZ&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PositionZ&lt;br /&gt;
&amp;lt;div id=&amp;quot;Power&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Power&lt;br /&gt;
&amp;lt;div id=&amp;quot;PowerActual&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PowerActual&lt;br /&gt;
&amp;lt;div id=&amp;quot;PowerPotential&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PowerPotential&lt;br /&gt;
&amp;lt;div id=&amp;quot;PowerRequired&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PowerRequired&lt;br /&gt;
&amp;lt;div id=&amp;quot;Pressure&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Pressure&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureExternal&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureExternal&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureInteral&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureInteral&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureSetting&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureSetting&lt;br /&gt;
&amp;lt;div id=&amp;quot;Quantity&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Quantity&lt;br /&gt;
:	Total quantity in the device.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Ratio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Ratio&lt;br /&gt;
:	Context specific value depending on device, 0 to 1 based ratio.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioCarbonDioxide&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioCarbonDioxide&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioNitrogen&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioNitrogen&lt;br /&gt;
:	The ratio of nitrogen in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioOxygen&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioOxygen&lt;br /&gt;
:	The ratio of oxygen in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioPollutant&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioPollutant&lt;br /&gt;
:	The ratio of pollutant in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioVolatiles&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioVolatiles&lt;br /&gt;
:	The ratio of volatiles in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioWater&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioWater&lt;br /&gt;
:	The ratio of water in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Reagents&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Reagents&lt;br /&gt;
&amp;lt;div id=&amp;quot;RecipeHash&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RecipeHash&lt;br /&gt;
&amp;lt;div id=&amp;quot;RequestHash&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RequestHash&lt;br /&gt;
&amp;lt;div id=&amp;quot;RequiredPower&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RequiredPower&lt;br /&gt;
&amp;lt;div id=&amp;quot;Setting&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Setting&lt;br /&gt;
&amp;lt;div id=&amp;quot;SolarAngle&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;SolarAngle&lt;br /&gt;
:    Solar angle of the device.&lt;br /&gt;
:  &amp;lt;code&amp;gt;l r0 d0 SolarAngle # Sets r0 to the solar angle of d0.&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;Temperature&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Temperature&lt;br /&gt;
&amp;lt;div id=&amp;quot;TemperatureSettings&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;TemperatureSettings&lt;br /&gt;
&amp;lt;div id=&amp;quot;TotalMoles&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;TotalMoles&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityMagnitude&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityMagnitude&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityRelativeX&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityRelativeX&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityRelativeY&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityRelativeY&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityRelativeZ&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityRelativeZ&lt;br /&gt;
&amp;lt;div id=&amp;quot;Vertical&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Vertical&lt;br /&gt;
:	Vertical setting of the device.&lt;br /&gt;
&amp;lt;div id=&amp;quot;VerticalRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VerticalRatio&lt;br /&gt;
:	Ratio of vertical setting for device.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Volume&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Volume&lt;br /&gt;
:	Returns the device atmosphere volume&lt;br /&gt;
&lt;br /&gt;
==Slot Variables==&lt;br /&gt;
In general (always?) slots are assigned as follows.&lt;br /&gt;
:Slot 0: Import&lt;br /&gt;
:Slot 1: Export&lt;br /&gt;
:Slot 2: Inside Machine&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Occupied&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Occupied&lt;br /&gt;
:&amp;lt;code&amp;gt;ls r0 d0 2 Occupied #Stores 1 in r0 if d0 has more seeds&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;ls vOccupied dThisVictim 2 Occupied #stores 1 in vOccupied if dThisVictim has more seeds&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;OccupantHash&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;OccupantHash&lt;br /&gt;
&amp;lt;div id=&amp;quot;Quantity&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Quantity&lt;br /&gt;
&amp;lt;div id=&amp;quot;Damage&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Damage&lt;br /&gt;
&amp;lt;div id=&amp;quot;Efficiency&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Efficiency&lt;br /&gt;
&amp;lt;div id=&amp;quot;Health&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Health&lt;br /&gt;
&amp;lt;div id=&amp;quot;Growth&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Growth&lt;br /&gt;
:&amp;lt;code&amp;gt;ls r0 d0 0 Growth # Store the numerical growth stage of d0 in r0&amp;lt;/code&amp;gt; &lt;br /&gt;
&amp;lt;div id=&amp;quot;Pressure&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Pressure&lt;br /&gt;
&amp;lt;div id=&amp;quot;Temperature&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Temperature&lt;br /&gt;
&amp;lt;div id=&amp;quot;Charge&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Charge&lt;br /&gt;
&amp;lt;div id=&amp;quot;ChargeRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ChargeRatio&lt;br /&gt;
&amp;lt;div id=&amp;quot;Class&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Class&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureWaste&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureWaste&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureAir&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureAir&lt;br /&gt;
&amp;lt;div id=&amp;quot;MaxQuantity&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;MaxQuantity&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Mature&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Mature&lt;br /&gt;
:&amp;lt;code&amp;gt;ls r0 d0 0 Mature # Store 1 in r0 if d0 has a mature crop&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;ls vMature dThisVictim 0 Mature # Store 1 in vMature if dThisVictim has a mature crop&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Examples=&lt;br /&gt;
Previous examples were obsolete due to game changes, or confusing, they have been moved into the Discussions section&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Harvie automation===&lt;br /&gt;
This script uses the batch instruction &amp;lt;code&amp;gt;sb ...&amp;lt;/code&amp;gt; to control all Harvie devices on the network. But only one Harvie and one Tray will be the &#039;&#039;master&#039;&#039; and have their values read, the rest of the Harvies will repeat exactly what this unit does. Some problems with this design is that different types of crops mature at different speeds, and if seeds were manually planted and the master unit recieved the first seed, the harvesting action will be performed too early on all the other plants since they are growing a few seconds slower.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot; data-expandtext=&amp;quot;{{int:Expand, Automated Harvie Script}}&amp;quot; data-collapsetext=&amp;quot;{{int:Collapse, Automated Harvie Script}}&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
alias dHarvie d0&lt;br /&gt;
alias dTray d1&lt;br /&gt;
&lt;br /&gt;
alias rHarvieHash r8&lt;br /&gt;
alias rTrayHash r9&lt;br /&gt;
l rHarvieHash dHarvie PrefabHash&lt;br /&gt;
l rTrayHash dTray PrefabHash&lt;br /&gt;
&lt;br /&gt;
main:&lt;br /&gt;
yield&lt;br /&gt;
 #read plant data from the Tray&lt;br /&gt;
ls r0 dTray 0 Mature&lt;br /&gt;
 #harvestable plants return 1, young plants return 0&lt;br /&gt;
 #nothing planted returns -1&lt;br /&gt;
beq r0 -1 plantCrop&lt;br /&gt;
beq r0 1 harvestCrop&lt;br /&gt;
ls r0 dTray 0 Seeding&lt;br /&gt;
 #seeds available returns 1, all seeds picked returns 0&lt;br /&gt;
 #plants too young or old for seeds returns -1&lt;br /&gt;
beq r0 1 harvestCrop&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
plantCrop:&lt;br /&gt;
 #stop the planting if no seeds available&lt;br /&gt;
 #otherwise it will plant nothing repeatedly&lt;br /&gt;
ls r0 dHarvie 0 Occupied&lt;br /&gt;
beq r0 0 main&lt;br /&gt;
sb rHarvieHash Plant 1&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
harvestCrop:&lt;br /&gt;
sb rHarvieHash Harvest 1&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
### End Script ###&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
===Solar Panel 2-axis tracking===&lt;br /&gt;
This script was copied from the [[Solar_Logic_Circuits_Guide]] (code provided by bti, comments and readability changes by Fudd79)&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot; data-expandtext=&amp;quot;{{int:Expand, Solar Panel 2-axis tracking}}&amp;quot; data-collapsetext=&amp;quot;{{int:Collapse, Solar Panel 2-axis tracking}}&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# This code assumes the following:&lt;br /&gt;
# Daylight Sensor data-port points north&lt;br /&gt;
# Solar Panel data-port points east&lt;br /&gt;
&lt;br /&gt;
alias sensor d0&lt;br /&gt;
alias v_angle r0&lt;br /&gt;
alias h_angle r1&lt;br /&gt;
alias sun_up r2&lt;br /&gt;
&lt;br /&gt;
define solar_panel_hash -539224550&lt;br /&gt;
define heavy_solar_panel_hash -1545574413&lt;br /&gt;
&lt;br /&gt;
start:&lt;br /&gt;
# Check to see if sun is up&lt;br /&gt;
l sun_up sensor Activate&lt;br /&gt;
# Go to reset if it&#039;s not&lt;br /&gt;
beqz sun_up reset&lt;br /&gt;
&lt;br /&gt;
# Calculate vertical angle&lt;br /&gt;
l v_angle sensor Vertical&lt;br /&gt;
div v_angle v_angle 1.5&lt;br /&gt;
sub v_angle 50 v_angle&lt;br /&gt;
&lt;br /&gt;
# Write vertical angle to all solar panels&lt;br /&gt;
sb solar_panel_hash Vertical v_angle&lt;br /&gt;
sb heavy_solar_panel_hash Vertical v_angle&lt;br /&gt;
&lt;br /&gt;
# Obtain horizontal angle&lt;br /&gt;
l h_angle sensor Horizontal&lt;br /&gt;
&lt;br /&gt;
# Write vertical angle to all solar panels&lt;br /&gt;
sb solar_panel_hash Horizontal h_angle&lt;br /&gt;
sb heavy_solar_panel_hash Horizontal h_angle&lt;br /&gt;
&lt;br /&gt;
# Go to start again&lt;br /&gt;
yield&lt;br /&gt;
j start&lt;br /&gt;
&lt;br /&gt;
reset:&lt;br /&gt;
# Park solar panels vertically facing sunrise&lt;br /&gt;
sb solar_panel_hash Vertical 0&lt;br /&gt;
sb heavy_solar_panel_hash Vertical 0&lt;br /&gt;
# Park solar panels horizontally facing sunrise&lt;br /&gt;
sb solar_panel_hash Horizontal -90&lt;br /&gt;
sb heavy_solar_panel_hash Horizontal -90&lt;br /&gt;
# Wait 10 seconds&lt;br /&gt;
sleep 10&lt;br /&gt;
# Go to start again&lt;br /&gt;
j start&lt;br /&gt;
&lt;br /&gt;
### End Script ###&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Links=&lt;br /&gt;
----&lt;br /&gt;
* [https://stationeering.com/tools/ic] Stationeering.com offers a programmable circuits simulator so you can develop your code without repeatedly dying in game!&lt;br /&gt;
* [https://hastebin.com/uwuhidozun.md]&lt;br /&gt;
* [http://www.easy68k.com/]&lt;br /&gt;
* [https://pastebin.com/6Uw1KSRN] syntax highlighting for IC10 MIPS for KDE kwrite/kate text editor&lt;br /&gt;
* [https://drive.google.com/file/d/1yEsJ-u94OkuMQ8K6fY7Ja1HNpLcAdjo_/view] syntax highlighting for IC10 MIPS for Notepad++&lt;br /&gt;
* [https://pastebin.com/3kmGy0NN] syntax highlighting for IC10 MIPS for Notepad++ (updated: 05/05/2021)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Index=&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|+Functions &lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
*[[#abs|abs]]&lt;br /&gt;
*[[#add|add]]&lt;br /&gt;
*[[#alias|alias]]&lt;br /&gt;
*[[#and|and]]&lt;br /&gt;
*[[#beq|beq]]&lt;br /&gt;
*[[#bgez|bgez]]&lt;br /&gt;
*[[#bgtz|bgtz]]&lt;br /&gt;
*[[#blez|blez]]&lt;br /&gt;
*[[#bltz|bltz]]&lt;br /&gt;
*[[#bne|bne]]&lt;br /&gt;
*[[#breq|breq]]&lt;br /&gt;
*[[#brgez|brgez]]&lt;br /&gt;
*[[#brgtz|brgtz]]&lt;br /&gt;
*[[#brlez|brlez]]&lt;br /&gt;
*[[#brltz|brltz]]&lt;br /&gt;
*[[#brne|brne]]&lt;br /&gt;
*[[#ceil|cell]]&lt;br /&gt;
*[[#div|div]]&lt;br /&gt;
*[[#exp|exp]]&lt;br /&gt;
*[[#floor|floor]]&lt;br /&gt;
*[[#j|j]]&lt;br /&gt;
*[[#jr|jr]]&lt;br /&gt;
*[[#l|l]]&lt;br /&gt;
*[[#log|log]]&lt;br /&gt;
*[[#ls|ls]]&lt;br /&gt;
*[[#max|max]]&lt;br /&gt;
*[[#min|min]]&lt;br /&gt;
*[[#mod|mod]]&lt;br /&gt;
*[[#move|move]]&lt;br /&gt;
*[[#mul|mul]]&lt;br /&gt;
*[[#nor|nor]]&lt;br /&gt;
*[[#or|or]]&lt;br /&gt;
*[[#rand|rand]]&lt;br /&gt;
*[[#round|round]]&lt;br /&gt;
*[[#s|s]]&lt;br /&gt;
*[[#slt|slt]]&lt;br /&gt;
*[[#sqrt|sqrt]]&lt;br /&gt;
*[[#sub|sub]]&lt;br /&gt;
*[[#trunc|trunc]]&lt;br /&gt;
*[[#xor|xor]]xor&lt;br /&gt;
*[[#yield|yield]]&lt;br /&gt;
*[[##|#]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|+Device Variables &lt;br /&gt;
&amp;lt;div  class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
*[[#Activate|Activate]]&lt;br /&gt;
*[[#AirRelease|AirRelease]]&lt;br /&gt;
*[[#Charge|Charge]]&lt;br /&gt;
*[[#CLearMemory|CLearMemory]]&lt;br /&gt;
*[[#Color|Color]]&lt;br /&gt;
*[[#CompletionRatio|CompletionRatio]]&lt;br /&gt;
*[[#ElevatorLevel|ElevatorLevel]]&lt;br /&gt;
*[[#ElevatorSpeed|ElevatorSpeed]]&lt;br /&gt;
*[[#Error|Error]]&lt;br /&gt;
*[[#ExportCount|ExportCount]]&lt;br /&gt;
*[[#Filtration|Filtration]]&lt;br /&gt;
*[[#Harvest|Harvest]]&lt;br /&gt;
*[[#Horizontal|Horizontal]]&lt;br /&gt;
*[[#HorizontalRatio|HorizontalRatio]]&lt;br /&gt;
*[[#Idle|Idle]]&lt;br /&gt;
*[[#ImportCount|ImportCount]]&lt;br /&gt;
*[[#Lock|Lock]]&lt;br /&gt;
*[[#Maximum|Maximum]]&lt;br /&gt;
*[[#Mode|Mode]]&lt;br /&gt;
*[[#On|On]]&lt;br /&gt;
*[[#Open|Open]]&lt;br /&gt;
*[[#Output|Output]]&lt;br /&gt;
*[[#Plant|Plant]]&lt;br /&gt;
*[[#PositionX|PositionX]]&lt;br /&gt;
*[[#PositionY|PositionY]]&lt;br /&gt;
*[[#PositionZ|PositionZ]]&lt;br /&gt;
*[[#Power|Power]]&lt;br /&gt;
*[[#PowerActual|PowerActual]]&lt;br /&gt;
*[[#PowerPotential|PowerPotential]]&lt;br /&gt;
*[[#PowerRequired|PowerRequired]]&lt;br /&gt;
*[[#Pressure|Pressure]]&lt;br /&gt;
*[[#PressureExternal|PressureExternal]]&lt;br /&gt;
*[[#PressureInteral|PressureInteral]]&lt;br /&gt;
*[[#PressureSetting|PressureSetting]]&lt;br /&gt;
*[[#Quantity|Quantity]]&lt;br /&gt;
*[[#Ratio|Ratio]]&lt;br /&gt;
*[[#RatioCarbonDioxide|RatioCarbonDioxide]]&lt;br /&gt;
*[[#RatioNitrogen|RatioNitrogen]]&lt;br /&gt;
*[[#RatioOxygen|RatioOxygen]]&lt;br /&gt;
*[[#RatioPollutant|RatioPollutant]]&lt;br /&gt;
*[[#RatioVolatiles|RatioVolatiles]]&lt;br /&gt;
*[[#RatioWater|RatioWater]]&lt;br /&gt;
*[[#Reagents|Reagents]]&lt;br /&gt;
*[[#RecipeHash|RecipeHash]]&lt;br /&gt;
*[[#RequestHash|RequestHash]]&lt;br /&gt;
*[[#RequiredPower|RequiredPower]]&lt;br /&gt;
*[[#Setting|Setting]]&lt;br /&gt;
*[[#SolarAngle|SolarAngle]]&lt;br /&gt;
*[[#Temperature|Temperature]]&lt;br /&gt;
*[[#TemperatureSettings|TemperatureSettings]]&lt;br /&gt;
*[[#TotalMoles|TotalMoles]]&lt;br /&gt;
*[[#VelocityMagnitude|VelocityMagnitude]]&lt;br /&gt;
*[[#VelocityRelativeX|VelocityRelativeX]]&lt;br /&gt;
*[[#VelocityRelativeY|VelocityRelativeY]]&lt;br /&gt;
*[[#VelocityRelativeZ|VelocityRelativeZ]]&lt;br /&gt;
*[[#Vertical|Vertical]]&lt;br /&gt;
*[[#VerticalRatio|VerticalRatio]]&lt;br /&gt;
*[[#Volume|Volume]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|+Slot Variables &lt;br /&gt;
&amp;lt;div  class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
*[[#Occupied|Occupied]]&lt;br /&gt;
*[[#OccupantHash|OccupantHash]]&lt;br /&gt;
*[[#Quantity|Quantity]]&lt;br /&gt;
*[[#Damage|Damage]]&lt;br /&gt;
*[[#Efficiency|Efficiency]]&lt;br /&gt;
*[[#Health|Health]]&lt;br /&gt;
*[[#Growth|Growth]]&lt;br /&gt;
*[[#Pressure|Pressure]]&lt;br /&gt;
*[[#Temperature|Temperature]]&lt;br /&gt;
*[[#Charge|Charge]]&lt;br /&gt;
*[[#ChargeRatio|ChargeRatio]]&lt;br /&gt;
*[[#Class|Class]]&lt;br /&gt;
*[[#PressureWaste|PressureWaste]]&lt;br /&gt;
*[[#PressureAir|PressureAir]]&lt;br /&gt;
*[[#MaxQuantity|MaxQuantity]]&lt;br /&gt;
*[[#Mature|Mature]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=IC10&amp;diff=11309</id>
		<title>IC10</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=IC10&amp;diff=11309"/>
		<updated>2021-10-23T08:50:25Z</updated>

		<summary type="html">&lt;p&gt;Wark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:MIPS Programming]]&lt;br /&gt;
=MIPS scripting language for IC10 housings / chips=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Text after a # will be ignored to the end of the line. The amount of white&lt;br /&gt;
# space between arguments isn&#039;t important, but new lines start a new command.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Registers==&lt;br /&gt;
The IC contains 16 registers, numbered r0-r15. Think of these as variables in other programming languages. In fact, you can name them with the alias command (see below).&lt;br /&gt;
&lt;br /&gt;
To set a register directly (such as r0=2), use the &amp;lt;b&amp;gt;move&amp;lt;/b&amp;gt; command. To read a value from a device, use l (load). To write a value back to a device, use s (set). Note that&lt;br /&gt;
like most machine languages, the &amp;lt;i&amp;gt;destination&amp;lt;/i&amp;gt; goes first, so instructions always look like: action destination source.&lt;br /&gt;
&lt;br /&gt;
There are two more registers. One called ra (return address) and one called sp (stack pointer). The ra is used by certain jump and branching instructions (those ending with -al) to remember which line in the script it should return to. The sp tracks the next index within the stack (a memory that can store up to 512 values) to be pushed (written) to or popped (read) from. Neither ra or sp is protected, their values can be changed by instructions like any other register.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 10&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Sets r0 to the value 10&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 r1&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Copies the value of r1 to r0&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r0 d0&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Reads from device 0 and places the value in r0&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s d0 r0&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Writes the value from register 0 out to device 0&lt;br /&gt;
&lt;br /&gt;
==Device Ports==&lt;br /&gt;
ICs can interact with up to 6 other devices via d0 - d5, as well as the device it&#039;s attached to via db. To change or set a device, use a screwdriver and adjust the device in the IC housing. You can read or set any of the device&#039;s properties, so it is possible to do things like read the pressure and oxygen content of a room on the same Device port. &lt;br /&gt;
&lt;br /&gt;
The l (load) and s (set) instructions let you read and set values on a device.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r0 d0 Temperature&amp;lt;/code&amp;gt; #Reads the temperature from an atmosphere sensor into r0.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s d1 Setting r0 &amp;lt;/code&amp;gt; # Writes r0 to the device on port 1 to the Setting variable.&lt;br /&gt;
&lt;br /&gt;
==Labels==&lt;br /&gt;
Lables are used to make it easier to jump between lines in the script. The label will have a numerical value that is the same as its line number. Even though it&#039;s possible to use a labels value for calculations, doing so is a bad idea since any changes to the code can change the line numbers of the labels.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;main:&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;j main&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Constants==&lt;br /&gt;
Instead of using a register to store a fixed value, a constant can be made. Using this name will refer to the assigned value.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;define pi 3.14159&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move r0 pi&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Indirect referencing==&lt;br /&gt;
This is a way of accessing a register by using another register as a pointer. Adding an additional r infront of the register turns on this behaviour. The value stored in the register being used as the pointer must be between 0 to 15, this will then point to a register from r0 to r15, higher or lower values will cause an error.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 5&amp;lt;/code&amp;gt; stores the value 5 in r0&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move rr0 10&amp;lt;/code&amp;gt; is now the same as &amp;lt;code&amp;gt;move r5 10&amp;lt;/code&amp;gt; since r0 has the value 5, rr0 points at the register r5&lt;br /&gt;
&lt;br /&gt;
Additional r&#039;s can be added to do indirect referencing multiple times in a row.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move r1 2&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move r2 3&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move rrr1 4&amp;lt;/code&amp;gt; is now the same as &amp;lt;code&amp;gt;move r3 4&amp;lt;/code&amp;gt; since r1 points at r2 which points at r3&lt;br /&gt;
&lt;br /&gt;
This also works with devices&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move r0 2&amp;lt;/code&amp;gt; stores the value 2 in r0&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;s dr0 On 1&amp;lt;/code&amp;gt; is now the same as &amp;lt;code&amp;gt;s d2 On 1&amp;lt;/code&amp;gt;, r0 has the value 2 so dr0 points at d2&lt;br /&gt;
&lt;br /&gt;
==Debugging advice==&lt;br /&gt;
The value stored in a register can easily be seen by writing it to the Setting parameter of the IC housing, this has no sideeffects, too see the value just stand close and look directly at the housing (&amp;lt;code&amp;gt;s db Setting r0&amp;lt;/code&amp;gt;).&lt;br /&gt;
&amp;lt;br&amp;gt;To check if a certain block of code is executed, use the above trick but with a number that you choose, like the line number (&amp;lt;code&amp;gt;s db Setting 137&amp;lt;/code&amp;gt;).&lt;br /&gt;
&amp;lt;br&amp;gt;The configuration card can be used to manually check the data values stored in all connected devices.&lt;br /&gt;
&lt;br /&gt;
==What a typical program looks like==&lt;br /&gt;
A program is usually written to be a long continuous loop. There are often a jump out of this main loop into a subroutine when a certain condition is met (like a temperature being too high), to perform a needed task (like turning on a cooling system), subroutines almost always returns back to main loop afterwards. The &amp;lt;code&amp;gt;yield&amp;lt;/code&amp;gt; instruction will tell the program to wait to the next game tick, the game won&#039;t freeze without it, but it helps to keep things running smoothly. The &amp;lt;code&amp;gt;beq&amp;lt;/code&amp;gt; instruction means &amp;quot;branch (jump) if equal&amp;quot; and compares the first and second numbers, if they match it will jump to the line corresponding to the third number (labels are numbers).&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
alias myDevice d0&lt;br /&gt;
alias myImportantNumber r4&lt;br /&gt;
&lt;br /&gt;
main:&lt;br /&gt;
yield&lt;br /&gt;
#this is a comment, the program will ignore it, they are often used to explain something, or to turn off instructions without deleting them&lt;br /&gt;
...&lt;br /&gt;
beq myImportantNumber 42 myFunction&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
myFunction:&lt;br /&gt;
...&lt;br /&gt;
j main&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Instructions=&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;alias&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;alias&lt;br /&gt;
:alias str r? d? # labels register or device reference with name.  When alias is applied to a device, it will affect what shows on the screws in the IC base.  (housing)&lt;br /&gt;
&amp;lt;code&amp;gt;alias vTemperature r0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;alias dAutoHydro1 d0&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;move&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;move    &lt;br /&gt;
:d s     # stores the value of s in d&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 42 # Store 42 in register 0&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;l&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;load&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;l (load)&lt;br /&gt;
:l r# d# parameter&lt;br /&gt;
Reads from a device (d#) and stores the value in a register (r#)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r0 d0 Setting&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Read from the device on d0 into register 0&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r1 d5 Pressure&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Read the pressure from a sensor&lt;br /&gt;
&lt;br /&gt;
This also works with aliases. For example:&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
alias Sensor d0 &amp;lt;br/&amp;gt;&lt;br /&gt;
l r0 Sensor Temperature&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;ls&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;load slot&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ls (load slot)&lt;br /&gt;
:ls r# d# slotNum parameter&lt;br /&gt;
Reads from a slot (slotNum) of a device (d#)  and stores the value in a register (r#)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;ls r0 d0 2 Occupied&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Read from the second slot of device on d0, stores 1 in r0 if it&#039;s occupied, 0 otherwise.&lt;br /&gt;
&lt;br /&gt;
And here is the code to read the charge of an AIMeE:&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
alias robot d0 &amp;lt;br/&amp;gt;&lt;br /&gt;
alias charge r0 &amp;lt;br/&amp;gt;&lt;br /&gt;
ls charge robot 0 Charge &lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;s&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;set&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;s (set)&lt;br /&gt;
:s d# parameter r#&lt;br /&gt;
Writes a setting to a device. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s d0 Setting r0&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;add&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;add     &lt;br /&gt;
:d s t   # calculates s + t and stores the result in d&lt;br /&gt;
&amp;lt;code&amp;gt;add r0 r1 1 # add 1 to r1 and store the result as r0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;add r0 r0 1 # increment r0 by one&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;sub&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;sub     &lt;br /&gt;
:d s t   # calculates s - t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;mul&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;mul     &lt;br /&gt;
:d s t   # calculates s * t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;div&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;div     &lt;br /&gt;
:d s t   # calculates s / t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;mod&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;mod     &lt;br /&gt;
:d s t   &lt;br /&gt;
::# calculates s mod t and stores the result in d. Note this&lt;br /&gt;
::# doesn&#039;t behave like the % operator - the result will be &lt;br /&gt;
::# positive even if the either of the operands are negative&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;slt&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;slt     &lt;br /&gt;
:d s t   # stores 1 in d if s &amp;lt; t, 0 otherwise&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;sqrt&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;sqrt    &lt;br /&gt;
:d s     # calculates sqrt(s) and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;round&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;round   &lt;br /&gt;
:d s     # finds the rounded value of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;trunc&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;trunc   &lt;br /&gt;
:d s     # finds the truncated value of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;ceil&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ceil   &lt;br /&gt;
: d s     # calculates the ceiling of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;floor&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;floor  &lt;br /&gt;
: d s     # calculates the floor of s and stores the result in d&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;max&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;max    &lt;br /&gt;
: d s t   # calculates the maximum of s and t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;min&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;min    &lt;br /&gt;
: d s t   # calculates the minimum of s and t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;abs&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;abs    &lt;br /&gt;
: d s     # calculates the absolute value of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;log&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;log    &lt;br /&gt;
: d s     # calculates the natural logarithm of s and stores the result&lt;br /&gt;
::# in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;exp&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;exp    &lt;br /&gt;
: d s     # calculates the exponential of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;rand&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;rand   &lt;br /&gt;
: d       # selects a random number uniformly at random between 0 and 1&lt;br /&gt;
::# inclusive and stores the result in d&lt;br /&gt;
&lt;br /&gt;
::# boolean arithmetic uses the C convention that 0 is false and any non-zero&lt;br /&gt;
::# value is true.&lt;br /&gt;
&amp;lt;div id=&amp;quot;and&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;and    &lt;br /&gt;
: d s t   # stores 1 in d if both s and t have non-zero values,&lt;br /&gt;
::# 0 otherwise&lt;br /&gt;
&amp;lt;div id=&amp;quot;or&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;or     &lt;br /&gt;
: d s t   # stores 1 in d if either s or t have non-zero values,&lt;br /&gt;
::# 0 otherwise&lt;br /&gt;
&amp;lt;div id=&amp;quot;xor&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;xor    &lt;br /&gt;
: d s t   # stores 1 in d if exactly one of s and t are non-zero,&lt;br /&gt;
::# 0 otherwise&lt;br /&gt;
&amp;lt;div id=&amp;quot;nor&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;nor &lt;br /&gt;
:    d s t   # stores 1 in d if both s and t equal zero, 0 otherwise&lt;br /&gt;
::# Lines are numbered starting at zero&lt;br /&gt;
&amp;lt;div id=&amp;quot;j&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;j&lt;br /&gt;
:             a # jumps to line a.&lt;br /&gt;
&amp;lt;div id=&amp;quot;bltz&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bltz&lt;br /&gt;
:      s   a # jumps to line a if s &amp;lt;  0&lt;br /&gt;
&amp;lt;div id=&amp;quot;blez&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;blez &lt;br /&gt;
:     s   a # jumps to line a if s &amp;lt;= 0&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;bgez&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bgez &lt;br /&gt;
:     s   a # jumps to line a if s &amp;gt;= 0&lt;br /&gt;
&amp;lt;div id=&amp;quot;bgtz&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bgtz&lt;br /&gt;
:      s   a # jumps to line a if s &amp;gt;  0&lt;br /&gt;
&amp;lt;div id=&amp;quot;beq&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;beq &lt;br /&gt;
:      s t a # jumps to line a if s == t&lt;br /&gt;
&amp;lt;div id=&amp;quot;bne&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bne &lt;br /&gt;
:      s t a # jumps to line a if s != t&lt;br /&gt;
&amp;lt;div id=&amp;quot;bdseal&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bdseal&lt;br /&gt;
:    d? a(r?|num) # Jump execution to line a and store current line number if device d? is set.&lt;br /&gt;
&amp;lt;code&amp;gt;bdseal d0 32 #Store line number and jump to line 32 if d0 is assigned.&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;BR&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;bdseal dThisVictim HarvestCrop #Store line in ra and jump to sub HarvestCrop if device dThisVictim is assigned.&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;yield&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;yield           &lt;br /&gt;
: 	# ceases code execution for this power tick&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;lb&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;lb&lt;br /&gt;
:      r? typeHash var batchMode # Loads var from all output network devices with provided typeHash  using provided batchMode: Average(0), Sum (1), Minimum (2), Maximum (3). Can be used word or number. Result store into r?&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;sb&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;sb&lt;br /&gt;
:      typeHash var r? # Store register r? to var on all output network devices with provided typeHash&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
; #&lt;br /&gt;
:     # The following text will be ignored during compiling; use this to create comments.&lt;br /&gt;
&lt;br /&gt;
[https://www.cs.tufts.edu/comp/140/lectures/Day_3/mips_summary.pdf Other examples]&lt;br /&gt;
&lt;br /&gt;
== Conditional functions cheatsheet ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! suffix !! description !! branch to line !! branch and store return address !! relative jump to line !! set register&lt;br /&gt;
|-&lt;br /&gt;
| prefix: ||  || b- || b-al || br- || s-&lt;br /&gt;
|-&lt;br /&gt;
|  || unconditional || j    || jal    || jr    || &lt;br /&gt;
|-&lt;br /&gt;
| -eq  || if a == b || beq  || beqal  || breq  || seq&lt;br /&gt;
|-&lt;br /&gt;
| -eqz || if a == 0 || beqz || beqzal || breqz || seqz&lt;br /&gt;
|-&lt;br /&gt;
| -ge  || if a &amp;gt;= b || bge  || bgeal  || brge  || sge&lt;br /&gt;
|-&lt;br /&gt;
| -gez || if a &amp;gt;= 0 || bgez || bgezal || brgez || sgez&lt;br /&gt;
|-&lt;br /&gt;
| -gt  || if a &amp;gt; b  || bgt  || bgtal  || brgt  || sgt&lt;br /&gt;
|-&lt;br /&gt;
| -gtz || if a &amp;gt; 0  || bgtz || bgtzal || brgtz || sgtz&lt;br /&gt;
|-&lt;br /&gt;
| -le  || if a &amp;lt;= b || ble  || bleal  || brle  || sle&lt;br /&gt;
|-&lt;br /&gt;
| -lez || if a &amp;lt;= 0 || blez || blezal || brlez || slez&lt;br /&gt;
|-&lt;br /&gt;
| -lt  || if a &amp;lt; b  || blt  || bltal  || brlt  || slt&lt;br /&gt;
|-&lt;br /&gt;
| -ltz || if a &amp;lt; 0  || bltz || bltzal || brltz || sltz&lt;br /&gt;
|-&lt;br /&gt;
| -ne  || if a != b || bne  || bneal  || brne  || sne&lt;br /&gt;
|-&lt;br /&gt;
| -nez || if a != 0 || bnez || bnezal || brnez || snez&lt;br /&gt;
|-&lt;br /&gt;
| -dns || if device d is not set          || bdns || bdnsal || brdns || sdns&lt;br /&gt;
|-&lt;br /&gt;
| -dse || if device d is set              || bdse || bdseal || brdse || sdse&lt;br /&gt;
|-&lt;br /&gt;
| -ap  || if a approximately equals b     || bap  || bapal  || brap  || sap&lt;br /&gt;
|-&lt;br /&gt;
| -apz || if a approximately equals 0     || bapz || bapzal || brapz || sapz&lt;br /&gt;
|-&lt;br /&gt;
| -na  || if a not approximately equals b || bna  || bnaal  || brna  || sna&lt;br /&gt;
|-&lt;br /&gt;
| -naz || if a not approximately equals 0 || bnaz || bnazal || brnaz || snaz&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
All &amp;lt;code&amp;gt;b-&amp;lt;/code&amp;gt; commands require target line as last argument, all &amp;lt;code&amp;gt;s-&amp;lt;/code&amp;gt; commands require register to store result as first argument. All &amp;lt;code&amp;gt;br-&amp;lt;/code&amp;gt; commands require number to jump relatively as last argument. e.g. &amp;lt;code&amp;gt;breq a b 3&amp;lt;/code&amp;gt; means if a=b then jump to 3 lines after.&lt;br /&gt;
&lt;br /&gt;
All approximate functions require additional argument denoting how close two numbers need to be considered equal. E.g.: &amp;lt;code&amp;gt;sap r0 100 101 0.01&amp;lt;/code&amp;gt; will consider 100 and 101 almost equal (not more than 1%=0.01 different) and will set r0 to 1. The exact formula is &amp;lt;code&amp;gt;if abs(a - b) &amp;lt;= max(c * max(abs(a), abs(b)), float.epsilon * 8)&amp;lt;/code&amp;gt; for &amp;lt;code&amp;gt;-ap&amp;lt;/code&amp;gt; and is similar for other approximate functions.&lt;br /&gt;
&lt;br /&gt;
==Device Variables==&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Activate&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Activate&lt;br /&gt;
:1 if device is activated (usually means running), otherwise 0&lt;br /&gt;
:&amp;lt;code&amp;gt;l r0 d0 Activate # sets r0 to 1 if on or 0 if off&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;AirRelease&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;AirRelease&lt;br /&gt;
&amp;lt;div id=&amp;quot;Charge&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Charge&lt;br /&gt;
:    The current charge the device has.&lt;br /&gt;
&amp;lt;div id=&amp;quot;CLearMemory&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;CLearMemory&lt;br /&gt;
:    When set to 1, clears the counter memory (e.g. ExportCount).  Will set itself back to 0 when triggered.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Color&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Color&lt;br /&gt;
:    0 (or lower) = Blue&lt;br /&gt;
:    1 = Grey&lt;br /&gt;
:    2 = Green&lt;br /&gt;
:    3 = Orange&lt;br /&gt;
:    4 = Red&lt;br /&gt;
:    5 = Yellow&lt;br /&gt;
:    6 = White&lt;br /&gt;
:    7 = Black&lt;br /&gt;
:    8 = Brown&lt;br /&gt;
:    9 = Khaki&lt;br /&gt;
:    10 = Pink&lt;br /&gt;
:    11 (or higher) = Purple&lt;br /&gt;
&amp;lt;div id=&amp;quot;CompletionRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;CompletionRatio&lt;br /&gt;
&amp;lt;div id=&amp;quot;ElevatorLevel&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ElevatorLevel&lt;br /&gt;
&amp;lt;div id=&amp;quot;ElevatorSpeed&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ElevatorSpeed&lt;br /&gt;
&amp;lt;div id=&amp;quot;Error&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Error&lt;br /&gt;
:	1 if device is in error state, otherwise 0&lt;br /&gt;
&amp;lt;div id=&amp;quot;ExportCount&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ExportCount&lt;br /&gt;
:    How many items exporfted since last ClearMemory.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Filtration&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Filtration&lt;br /&gt;
:	The current state of the filtration system.  For example filtration = 1 for a Hardsuit when filtration is On.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Harvest&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Harvest&lt;br /&gt;
:	Performs the harvesting action for any plant based machinery.&lt;br /&gt;
:  &amp;lt;code&amp;gt;s d0 Harvest 1 # Performs 1 harvest action on device d0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;Horizontal&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Horizontal&lt;br /&gt;
&amp;lt;div id=&amp;quot;HorizontalRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;HorizontalRatio&lt;br /&gt;
&amp;lt;div id=&amp;quot;Idle&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Idle&lt;br /&gt;
&amp;lt;div id=&amp;quot;ImportCount&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ImportCount&lt;br /&gt;
&amp;lt;div id=&amp;quot;Lock&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Lock&lt;br /&gt;
&amp;lt;div id=&amp;quot;Maximum&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Maximum&lt;br /&gt;
&amp;lt;div id=&amp;quot;Mode&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Mode&lt;br /&gt;
&amp;lt;div id=&amp;quot;On&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;On&lt;br /&gt;
&amp;lt;div id=&amp;quot;Open&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Open&lt;br /&gt;
&amp;lt;div id=&amp;quot;Output&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Output&lt;br /&gt;
&amp;lt;div id=&amp;quot;Plant&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Plant&lt;br /&gt;
:    Performs the planting operation for any plant based machinery.&lt;br /&gt;
:  &amp;lt;code&amp;gt;s d0 Plant 1 # Plants one crop in device d0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;PositionX&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PositionX&lt;br /&gt;
&amp;lt;div id=&amp;quot;PositionY&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PositionY&lt;br /&gt;
&amp;lt;div id=&amp;quot;PositionZ&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PositionZ&lt;br /&gt;
&amp;lt;div id=&amp;quot;Power&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Power&lt;br /&gt;
&amp;lt;div id=&amp;quot;PowerActual&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PowerActual&lt;br /&gt;
&amp;lt;div id=&amp;quot;PowerPotential&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PowerPotential&lt;br /&gt;
&amp;lt;div id=&amp;quot;PowerRequired&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PowerRequired&lt;br /&gt;
&amp;lt;div id=&amp;quot;Pressure&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Pressure&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureExternal&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureExternal&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureInteral&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureInteral&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureSetting&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureSetting&lt;br /&gt;
&amp;lt;div id=&amp;quot;Quantity&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Quantity&lt;br /&gt;
:	Total quantity in the device.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Ratio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Ratio&lt;br /&gt;
:	Context specific value depending on device, 0 to 1 based ratio.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioCarbonDioxide&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioCarbonDioxide&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioNitrogen&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioNitrogen&lt;br /&gt;
:	The ratio of nitrogen in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioOxygen&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioOxygen&lt;br /&gt;
:	The ratio of oxygen in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioPollutant&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioPollutant&lt;br /&gt;
:	The ratio of pollutant in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioVolatiles&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioVolatiles&lt;br /&gt;
:	The ratio of volatiles in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioWater&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioWater&lt;br /&gt;
:	The ratio of water in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Reagents&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Reagents&lt;br /&gt;
&amp;lt;div id=&amp;quot;RecipeHash&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RecipeHash&lt;br /&gt;
&amp;lt;div id=&amp;quot;RequestHash&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RequestHash&lt;br /&gt;
&amp;lt;div id=&amp;quot;RequiredPower&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RequiredPower&lt;br /&gt;
&amp;lt;div id=&amp;quot;Setting&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Setting&lt;br /&gt;
&amp;lt;div id=&amp;quot;SolarAngle&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;SolarAngle&lt;br /&gt;
:    Solar angle of the device.&lt;br /&gt;
:  &amp;lt;code&amp;gt;l r0 d0 SolarAngle # Sets r0 to the solar angle of d0.&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;Temperature&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Temperature&lt;br /&gt;
&amp;lt;div id=&amp;quot;TemperatureSettings&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;TemperatureSettings&lt;br /&gt;
&amp;lt;div id=&amp;quot;TotalMoles&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;TotalMoles&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityMagnitude&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityMagnitude&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityRelativeX&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityRelativeX&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityRelativeY&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityRelativeY&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityRelativeZ&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityRelativeZ&lt;br /&gt;
&amp;lt;div id=&amp;quot;Vertical&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Vertical&lt;br /&gt;
:	Vertical setting of the device.&lt;br /&gt;
&amp;lt;div id=&amp;quot;VerticalRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VerticalRatio&lt;br /&gt;
:	Ratio of vertical setting for device.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Volume&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Volume&lt;br /&gt;
:	Returns the device atmosphere volume&lt;br /&gt;
&lt;br /&gt;
==Slot Variables==&lt;br /&gt;
In general (always?) slots are assigned as follows.&lt;br /&gt;
:Slot 0: Import&lt;br /&gt;
:Slot 1: Export&lt;br /&gt;
:Slot 2: Inside Machine&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Occupied&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Occupied&lt;br /&gt;
:&amp;lt;code&amp;gt;ls r0 d0 2 Occupied #Stores 1 in r0 if d0 has more seeds&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;ls vOccupied dThisVictim 2 Occupied #stores 1 in vOccupied if dThisVictim has more seeds&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;OccupantHash&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;OccupantHash&lt;br /&gt;
&amp;lt;div id=&amp;quot;Quantity&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Quantity&lt;br /&gt;
&amp;lt;div id=&amp;quot;Damage&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Damage&lt;br /&gt;
&amp;lt;div id=&amp;quot;Efficiency&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Efficiency&lt;br /&gt;
&amp;lt;div id=&amp;quot;Health&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Health&lt;br /&gt;
&amp;lt;div id=&amp;quot;Growth&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Growth&lt;br /&gt;
:&amp;lt;code&amp;gt;ls r0 d0 0 Growth # Store the numerical growth stage of d0 in r0&amp;lt;/code&amp;gt; &lt;br /&gt;
&amp;lt;div id=&amp;quot;Pressure&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Pressure&lt;br /&gt;
&amp;lt;div id=&amp;quot;Temperature&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Temperature&lt;br /&gt;
&amp;lt;div id=&amp;quot;Charge&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Charge&lt;br /&gt;
&amp;lt;div id=&amp;quot;ChargeRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ChargeRatio&lt;br /&gt;
&amp;lt;div id=&amp;quot;Class&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Class&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureWaste&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureWaste&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureAir&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureAir&lt;br /&gt;
&amp;lt;div id=&amp;quot;MaxQuantity&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;MaxQuantity&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Mature&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Mature&lt;br /&gt;
:&amp;lt;code&amp;gt;ls r0 d0 0 Mature # Store 1 in r0 if d0 has a mature crop&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;ls vMature dThisVictim 0 Mature # Store 1 in vMature if dThisVictim has a mature crop&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Examples=&lt;br /&gt;
Previous examples were obsolete due to game changes, or confusing, they have been moved into the Discussions section&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Harvie automation===&lt;br /&gt;
This script uses the batch instruction &amp;lt;code&amp;gt;sb ...&amp;lt;/code&amp;gt; to control all Harvies on the network. But only one Harvie and one Tray will be the &#039;&#039;master&#039;&#039; and have their values read, the rest of the Harvies will just repeat whatever the &#039;&#039;master&#039;&#039; unit does. Some problems with this is that different types of crops mature at different speeds, and if manually planting and giving the &#039;&#039;master&#039;&#039; unit the first seed the harvesting action will be performed too early on the other plants.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot; data-expandtext=&amp;quot;{{int:Expand, Automated Harvie Script}}&amp;quot; data-collapsetext=&amp;quot;{{int:Collapse, Automated Harvie Script}}&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
alias dHarvie d0&lt;br /&gt;
alias dTray d1&lt;br /&gt;
&lt;br /&gt;
alias rHarvieHash r8&lt;br /&gt;
alias rTrayHash r9&lt;br /&gt;
l rHarvieHash dHarvie PrefabHash&lt;br /&gt;
l rTrayHash dTray PrefabHash&lt;br /&gt;
&lt;br /&gt;
main:&lt;br /&gt;
yield&lt;br /&gt;
 #read plant data from the Tray&lt;br /&gt;
ls r0 dTray 0 Mature&lt;br /&gt;
 #harvestable plants return 1, young plants return 0&lt;br /&gt;
 #nothing planted returns -1&lt;br /&gt;
beq r0 -1 plantCrop&lt;br /&gt;
beq r0 1 harvestCrop&lt;br /&gt;
ls r0 dTray 0 Seeding&lt;br /&gt;
 #seeds available returns 1, all seeds picked returns 0&lt;br /&gt;
 #plants too young or old for seeds returns -1&lt;br /&gt;
beq r0 1 harvestCrop&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
plantCrop:&lt;br /&gt;
 #stop the planting if no seeds available&lt;br /&gt;
 #otherwise it will plant nothing repeatedly&lt;br /&gt;
ls r0 dHarvie 0 Occupied&lt;br /&gt;
beq r0 0 main&lt;br /&gt;
sb rHarvieHash Plant 1&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
harvestCrop:&lt;br /&gt;
sb rHarvieHash Harvest 1&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
### End Script ###&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
===Solar Panel 2-axis tracking===&lt;br /&gt;
This script was copied from the [[Solar_Logic_Circuits_Guide]] (code provided by bti, comments and readability changes by Fudd79)&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot; data-expandtext=&amp;quot;{{int:Expand, Solar Panel 2-axis tracking}}&amp;quot; data-collapsetext=&amp;quot;{{int:Collapse, Solar Panel 2-axis tracking}}&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# This code assumes the following:&lt;br /&gt;
# Daylight Sensor data-port points north&lt;br /&gt;
# Solar Panel data-port points east&lt;br /&gt;
&lt;br /&gt;
alias sensor d0&lt;br /&gt;
alias v_angle r0&lt;br /&gt;
alias h_angle r1&lt;br /&gt;
alias sun_up r2&lt;br /&gt;
&lt;br /&gt;
define solar_panel_hash -539224550&lt;br /&gt;
define heavy_solar_panel_hash -1545574413&lt;br /&gt;
&lt;br /&gt;
start:&lt;br /&gt;
# Check to see if sun is up&lt;br /&gt;
l sun_up sensor Activate&lt;br /&gt;
# Go to reset if it&#039;s not&lt;br /&gt;
beqz sun_up reset&lt;br /&gt;
&lt;br /&gt;
# Calculate vertical angle&lt;br /&gt;
l v_angle sensor Vertical&lt;br /&gt;
div v_angle v_angle 1.5&lt;br /&gt;
sub v_angle 50 v_angle&lt;br /&gt;
&lt;br /&gt;
# Write vertical angle to all solar panels&lt;br /&gt;
sb solar_panel_hash Vertical v_angle&lt;br /&gt;
sb heavy_solar_panel_hash Vertical v_angle&lt;br /&gt;
&lt;br /&gt;
# Obtain horizontal angle&lt;br /&gt;
l h_angle sensor Horizontal&lt;br /&gt;
&lt;br /&gt;
# Write vertical angle to all solar panels&lt;br /&gt;
sb solar_panel_hash Horizontal h_angle&lt;br /&gt;
sb heavy_solar_panel_hash Horizontal h_angle&lt;br /&gt;
&lt;br /&gt;
# Go to start again&lt;br /&gt;
yield&lt;br /&gt;
j start&lt;br /&gt;
&lt;br /&gt;
reset:&lt;br /&gt;
# Park solar panels vertically facing sunrise&lt;br /&gt;
sb solar_panel_hash Vertical 0&lt;br /&gt;
sb heavy_solar_panel_hash Vertical 0&lt;br /&gt;
# Park solar panels horizontally facing sunrise&lt;br /&gt;
sb solar_panel_hash Horizontal -90&lt;br /&gt;
sb heavy_solar_panel_hash Horizontal -90&lt;br /&gt;
# Wait 10 seconds&lt;br /&gt;
sleep 10&lt;br /&gt;
# Go to start again&lt;br /&gt;
j start&lt;br /&gt;
&lt;br /&gt;
### End Script ###&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Links=&lt;br /&gt;
----&lt;br /&gt;
* [https://stationeering.com/tools/ic] Stationeering.com offers a programmable circuits simulator so you can develop your code without repeatedly dying in game!&lt;br /&gt;
* [https://hastebin.com/uwuhidozun.md]&lt;br /&gt;
* [http://www.easy68k.com/]&lt;br /&gt;
* [https://pastebin.com/6Uw1KSRN] syntax highlighting for IC10 MIPS for KDE kwrite/kate text editor&lt;br /&gt;
* [https://drive.google.com/file/d/1yEsJ-u94OkuMQ8K6fY7Ja1HNpLcAdjo_/view] syntax highlighting for IC10 MIPS for Notepad++&lt;br /&gt;
* [https://pastebin.com/3kmGy0NN] syntax highlighting for IC10 MIPS for Notepad++ (updated: 05/05/2021)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Index=&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|+Functions &lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
*[[#abs|abs]]&lt;br /&gt;
*[[#add|add]]&lt;br /&gt;
*[[#alias|alias]]&lt;br /&gt;
*[[#and|and]]&lt;br /&gt;
*[[#beq|beq]]&lt;br /&gt;
*[[#bgez|bgez]]&lt;br /&gt;
*[[#bgtz|bgtz]]&lt;br /&gt;
*[[#blez|blez]]&lt;br /&gt;
*[[#bltz|bltz]]&lt;br /&gt;
*[[#bne|bne]]&lt;br /&gt;
*[[#breq|breq]]&lt;br /&gt;
*[[#brgez|brgez]]&lt;br /&gt;
*[[#brgtz|brgtz]]&lt;br /&gt;
*[[#brlez|brlez]]&lt;br /&gt;
*[[#brltz|brltz]]&lt;br /&gt;
*[[#brne|brne]]&lt;br /&gt;
*[[#ceil|cell]]&lt;br /&gt;
*[[#div|div]]&lt;br /&gt;
*[[#exp|exp]]&lt;br /&gt;
*[[#floor|floor]]&lt;br /&gt;
*[[#j|j]]&lt;br /&gt;
*[[#jr|jr]]&lt;br /&gt;
*[[#l|l]]&lt;br /&gt;
*[[#log|log]]&lt;br /&gt;
*[[#ls|ls]]&lt;br /&gt;
*[[#max|max]]&lt;br /&gt;
*[[#min|min]]&lt;br /&gt;
*[[#mod|mod]]&lt;br /&gt;
*[[#move|move]]&lt;br /&gt;
*[[#mul|mul]]&lt;br /&gt;
*[[#nor|nor]]&lt;br /&gt;
*[[#or|or]]&lt;br /&gt;
*[[#rand|rand]]&lt;br /&gt;
*[[#round|round]]&lt;br /&gt;
*[[#s|s]]&lt;br /&gt;
*[[#slt|slt]]&lt;br /&gt;
*[[#sqrt|sqrt]]&lt;br /&gt;
*[[#sub|sub]]&lt;br /&gt;
*[[#trunc|trunc]]&lt;br /&gt;
*[[#xor|xor]]xor&lt;br /&gt;
*[[#yield|yield]]&lt;br /&gt;
*[[##|#]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|+Device Variables &lt;br /&gt;
&amp;lt;div  class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
*[[#Activate|Activate]]&lt;br /&gt;
*[[#AirRelease|AirRelease]]&lt;br /&gt;
*[[#Charge|Charge]]&lt;br /&gt;
*[[#CLearMemory|CLearMemory]]&lt;br /&gt;
*[[#Color|Color]]&lt;br /&gt;
*[[#CompletionRatio|CompletionRatio]]&lt;br /&gt;
*[[#ElevatorLevel|ElevatorLevel]]&lt;br /&gt;
*[[#ElevatorSpeed|ElevatorSpeed]]&lt;br /&gt;
*[[#Error|Error]]&lt;br /&gt;
*[[#ExportCount|ExportCount]]&lt;br /&gt;
*[[#Filtration|Filtration]]&lt;br /&gt;
*[[#Harvest|Harvest]]&lt;br /&gt;
*[[#Horizontal|Horizontal]]&lt;br /&gt;
*[[#HorizontalRatio|HorizontalRatio]]&lt;br /&gt;
*[[#Idle|Idle]]&lt;br /&gt;
*[[#ImportCount|ImportCount]]&lt;br /&gt;
*[[#Lock|Lock]]&lt;br /&gt;
*[[#Maximum|Maximum]]&lt;br /&gt;
*[[#Mode|Mode]]&lt;br /&gt;
*[[#On|On]]&lt;br /&gt;
*[[#Open|Open]]&lt;br /&gt;
*[[#Output|Output]]&lt;br /&gt;
*[[#Plant|Plant]]&lt;br /&gt;
*[[#PositionX|PositionX]]&lt;br /&gt;
*[[#PositionY|PositionY]]&lt;br /&gt;
*[[#PositionZ|PositionZ]]&lt;br /&gt;
*[[#Power|Power]]&lt;br /&gt;
*[[#PowerActual|PowerActual]]&lt;br /&gt;
*[[#PowerPotential|PowerPotential]]&lt;br /&gt;
*[[#PowerRequired|PowerRequired]]&lt;br /&gt;
*[[#Pressure|Pressure]]&lt;br /&gt;
*[[#PressureExternal|PressureExternal]]&lt;br /&gt;
*[[#PressureInteral|PressureInteral]]&lt;br /&gt;
*[[#PressureSetting|PressureSetting]]&lt;br /&gt;
*[[#Quantity|Quantity]]&lt;br /&gt;
*[[#Ratio|Ratio]]&lt;br /&gt;
*[[#RatioCarbonDioxide|RatioCarbonDioxide]]&lt;br /&gt;
*[[#RatioNitrogen|RatioNitrogen]]&lt;br /&gt;
*[[#RatioOxygen|RatioOxygen]]&lt;br /&gt;
*[[#RatioPollutant|RatioPollutant]]&lt;br /&gt;
*[[#RatioVolatiles|RatioVolatiles]]&lt;br /&gt;
*[[#RatioWater|RatioWater]]&lt;br /&gt;
*[[#Reagents|Reagents]]&lt;br /&gt;
*[[#RecipeHash|RecipeHash]]&lt;br /&gt;
*[[#RequestHash|RequestHash]]&lt;br /&gt;
*[[#RequiredPower|RequiredPower]]&lt;br /&gt;
*[[#Setting|Setting]]&lt;br /&gt;
*[[#SolarAngle|SolarAngle]]&lt;br /&gt;
*[[#Temperature|Temperature]]&lt;br /&gt;
*[[#TemperatureSettings|TemperatureSettings]]&lt;br /&gt;
*[[#TotalMoles|TotalMoles]]&lt;br /&gt;
*[[#VelocityMagnitude|VelocityMagnitude]]&lt;br /&gt;
*[[#VelocityRelativeX|VelocityRelativeX]]&lt;br /&gt;
*[[#VelocityRelativeY|VelocityRelativeY]]&lt;br /&gt;
*[[#VelocityRelativeZ|VelocityRelativeZ]]&lt;br /&gt;
*[[#Vertical|Vertical]]&lt;br /&gt;
*[[#VerticalRatio|VerticalRatio]]&lt;br /&gt;
*[[#Volume|Volume]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|+Slot Variables &lt;br /&gt;
&amp;lt;div  class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
*[[#Occupied|Occupied]]&lt;br /&gt;
*[[#OccupantHash|OccupantHash]]&lt;br /&gt;
*[[#Quantity|Quantity]]&lt;br /&gt;
*[[#Damage|Damage]]&lt;br /&gt;
*[[#Efficiency|Efficiency]]&lt;br /&gt;
*[[#Health|Health]]&lt;br /&gt;
*[[#Growth|Growth]]&lt;br /&gt;
*[[#Pressure|Pressure]]&lt;br /&gt;
*[[#Temperature|Temperature]]&lt;br /&gt;
*[[#Charge|Charge]]&lt;br /&gt;
*[[#ChargeRatio|ChargeRatio]]&lt;br /&gt;
*[[#Class|Class]]&lt;br /&gt;
*[[#PressureWaste|PressureWaste]]&lt;br /&gt;
*[[#PressureAir|PressureAir]]&lt;br /&gt;
*[[#MaxQuantity|MaxQuantity]]&lt;br /&gt;
*[[#Mature|Mature]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Furnace_temperature_and_pressure_math&amp;diff=11308</id>
		<title>Furnace temperature and pressure math</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Furnace_temperature_and_pressure_math&amp;diff=11308"/>
		<updated>2021-10-22T14:46:09Z</updated>

		<summary type="html">&lt;p&gt;Wark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Introduction ===&lt;br /&gt;
This page is about predicting combustion temperatures and pressures inside furnaces. It&#039;s not about engineering or design. &lt;br /&gt;
&lt;br /&gt;
The furnace is one of the most important objects in the entire game, but it can also be complicated and hard to use, especially when making alloys and super-alloys. There is no real need to know anything written on this page, because it&#039;s possible to engineer solutions that doesn&#039;t require placing fuel inside a furnace. Hot gas can also be made elsewhere (with an Air Conditioner or by combusting fuel in a pipe) and stored in insulated tanks, and just be pumped directly into a furnace as needed.&lt;br /&gt;
&lt;br /&gt;
There are two MIPS scripts here (click the links to expand/collpase the code), that can do the math described on this page inside the game. The first script is used to predict what temperature and pressure a furnace will reach when the current gas content is ignited. The second script is used to predict how much perfect fuel (33.33% oxygen and 66.67% volatiles) and how much other gas (not fuel) that needs to be added in order to reach a desired temperature and pressure on ignition. There are two alloys that are tricky however: Waspalloy and Solder. That is because the gas mixes to make these two tends to be too dilute to ignite (below 5% oxygen), but there are ways around that, the furnace could for example be ignited after adding only half the dilutant and then the remainder is added afterwards).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot; data-expandtext=&amp;quot;{{int:EXPAND - a MIPS script that predicts the ignition temperature and pressure of a furnace based on the gases inside of it}}&amp;quot; data-collapsetext=&amp;quot;{{int:COLLAPSE - a MIPS script that predicts the ignition temperature and pressure of a furnace based on the gases inside of it}}&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#prediction of the ignition temperature and pressure of a furnace&lt;br /&gt;
#if combustion can&#039;t occur, display current temperature and pressure&lt;br /&gt;
&lt;br /&gt;
alias furnace d0        #advanced or regular&lt;br /&gt;
alias consoleTemp d1    #console, small LED&lt;br /&gt;
alias consolePres d2    #console, small LED&lt;br /&gt;
&lt;br /&gt;
alias ratioOx r5&lt;br /&gt;
alias ratioVol r6&lt;br /&gt;
alias specificHeat r12&lt;br /&gt;
alias fuel r13&lt;br /&gt;
alias temp r14&lt;br /&gt;
alias pres r15&lt;br /&gt;
&lt;br /&gt;
define energyReleased 563452&lt;br /&gt;
define specificHeatInc 172.615&lt;br /&gt;
define gasMolInc 5.7&lt;br /&gt;
&lt;br /&gt;
main:&lt;br /&gt;
yield&lt;br /&gt;
#calculate the specific heat of the gas mix&lt;br /&gt;
l r5 furnace RatioOxygen&lt;br /&gt;
l r6 furnace RatioVolatiles&lt;br /&gt;
l r7 furnace RatioCarbonDioxide&lt;br /&gt;
l r8 furnace RatioPollutant&lt;br /&gt;
l r9 furnace RatioNitrogen&lt;br /&gt;
l r10 furnace RatioNitrousOxide&lt;br /&gt;
l r11 furnace RatioWater&lt;br /&gt;
mul r0 r5 21.1&lt;br /&gt;
mul r1 r6 20.4&lt;br /&gt;
add r0 r0 r1&lt;br /&gt;
mul r1 r7 28.2&lt;br /&gt;
add r0 r0 r1&lt;br /&gt;
mul r1 r8 24.8&lt;br /&gt;
add r0 r0 r1&lt;br /&gt;
mul r1 r9 20.6&lt;br /&gt;
add r0 r0 r1&lt;br /&gt;
mul r1 r10 23&lt;br /&gt;
add r0 r0 r1&lt;br /&gt;
mul r1 r11 72&lt;br /&gt;
add specificHeat r0 r1&lt;br /&gt;
#calculate the fuel amount&lt;br /&gt;
div ratioVol ratioVol 2&lt;br /&gt;
min fuel ratioOx ratioVol&lt;br /&gt;
#calculate Temp after ignition&lt;br /&gt;
mul r0 fuel specificHeatInc&lt;br /&gt;
add r0 r0 specificHeat&lt;br /&gt;
mul r1 fuel energyReleased&lt;br /&gt;
l r2 furnace Temperature&lt;br /&gt;
mul r2 r2 specificHeat&lt;br /&gt;
add r1 r1 r2&lt;br /&gt;
div temp r1 r0&lt;br /&gt;
#calculate Pressure after ignition&lt;br /&gt;
l r0 furnace Temperature&lt;br /&gt;
l r1 furnace Pressure&lt;br /&gt;
mul r2 fuel gasMolInc&lt;br /&gt;
add r2 r2 1&lt;br /&gt;
mul r2 r2 temp&lt;br /&gt;
mul r2 r2 r1&lt;br /&gt;
div pres r2 r0&lt;br /&gt;
#check if pressure &amp;lt;10kPa and ratios &amp;lt;0.05&lt;br /&gt;
blt r1 10 noCombustion&lt;br /&gt;
blt ratioOx 0.05 noCombustion&lt;br /&gt;
blt ratioVol 0.05 noCombustion&lt;br /&gt;
s consoleTemp Color 6&lt;br /&gt;
s consolePres Color 1&lt;br /&gt;
j displayResults&lt;br /&gt;
noCombustion:&lt;br /&gt;
s consoleTemp Color 3&lt;br /&gt;
s consolePres Color 2&lt;br /&gt;
move temp r0&lt;br /&gt;
move pres r1&lt;br /&gt;
displayResults:&lt;br /&gt;
s consoleTemp Setting temp&lt;br /&gt;
s consolePres Setting pres&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
### End Script ###&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot; data-expandtext=&amp;quot;{{int:EXPAND - a MIPS script that calculates how to mix fuel and diluting gas inside a furnace to reach a desired temperature and pressure}}&amp;quot; data-collapsetext=&amp;quot;{{int:COLLAPSE - a MIPS script that calculates how to mix fuel and diluting gas inside a furnace to reach a desired temperature and pressure}}&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#A script for calculating how to dilute fuel..&lt;br /&gt;
#..inside a furnace to reach a desired temperature..&lt;br /&gt;
#..and pressure on ignition&lt;br /&gt;
&lt;br /&gt;
# This script requires perfect fuel (O2 + 2 H2)&lt;br /&gt;
# The diluting gas can be anything, even a mix&lt;br /&gt;
# Temperature of fuel and dilutant can be different&lt;br /&gt;
# BLUE color = dilutant must provide missing oxygen&lt;br /&gt;
# ORANGE color = gas will ignite&lt;br /&gt;
&lt;br /&gt;
#Inputs are desired temperature (K) and pressure (kPa)&lt;br /&gt;
#Outputs are the pressure of fuel (kPa) and the..&lt;br /&gt;
#..total pressure (kPa) after adding the dilutant&lt;br /&gt;
&lt;br /&gt;
alias inputTemp d0          #logic memory&lt;br /&gt;
alias inputPres d1          #logic memory&lt;br /&gt;
alias outputFuel d2         #console, small LED&lt;br /&gt;
alias outputTotal d3        #console, small LED&lt;br /&gt;
alias fuelAnalyzer d4       #pipe analyzer&lt;br /&gt;
alias dilutantAnalyzer d5   #pipe analyzer&lt;br /&gt;
&lt;br /&gt;
alias oldTmix r10&lt;br /&gt;
alias Tmix r11&lt;br /&gt;
alias fuelSpecificHeat r12&lt;br /&gt;
alias dilutantSpecificHeat r13&lt;br /&gt;
alias ratioFuel r14&lt;br /&gt;
alias pressureTotal r15&lt;br /&gt;
s outputTotal Color 1&lt;br /&gt;
&lt;br /&gt;
main:&lt;br /&gt;
yield&lt;br /&gt;
s outputFuel Color 3&lt;br /&gt;
#calculate specific heat values&lt;br /&gt;
div r0 61.9 3&lt;br /&gt;
move fuelSpecificHeat r0&lt;br /&gt;
jal specficHeatCalculation&lt;br /&gt;
#calculate how to reach input values&lt;br /&gt;
l r5 fuelAnalyzer Temperature&lt;br /&gt;
l r6 inputTemp Setting&lt;br /&gt;
l r7 dilutantAnalyzer Temperature&lt;br /&gt;
move oldTmix r5&lt;br /&gt;
move r9 5&lt;br /&gt;
iterate:&lt;br /&gt;
jal fuelRatioCalculation&lt;br /&gt;
jal temperatureMixCalculation&lt;br /&gt;
sub r9 r9 1&lt;br /&gt;
move oldTmix Tmix&lt;br /&gt;
blt r9 1 iterate&lt;br /&gt;
#calculate total fuel+dilutant pressure&lt;br /&gt;
l r8 inputPres Setting&lt;br /&gt;
mul r1 ratioFuel 1.9&lt;br /&gt;
add r1 r1 1&lt;br /&gt;
mul r1 r1 r6&lt;br /&gt;
mul r0 r8 Tmix&lt;br /&gt;
div pressureTotal r0 r1&lt;br /&gt;
#calculate fuel pressure&lt;br /&gt;
mul r0 r5 pressureTotal&lt;br /&gt;
mul r0 ratioFuel r0&lt;br /&gt;
div r0 r0 Tmix&lt;br /&gt;
#calculate dilutant pressure (not used)&lt;br /&gt;
#sub r1 1 ratioFuel&lt;br /&gt;
#mul r1 r1 pressureTotal&lt;br /&gt;
#mul r1 r1 r7&lt;br /&gt;
#div r1 r1 Tmix&lt;br /&gt;
#check for too high input temperature&lt;br /&gt;
blt pressureTotal r0 noCombustion&lt;br /&gt;
#display result&lt;br /&gt;
bltal ratioFuel 0.15 dilutantMustHaveOxygen&lt;br /&gt;
bltal ratioFuel 0.10 noCombustion&lt;br /&gt;
s outputFuel Setting r0&lt;br /&gt;
s outputTotal Setting pressureTotal&lt;br /&gt;
j main&lt;br /&gt;
noCombustion:&lt;br /&gt;
s outputFuel Setting -1&lt;br /&gt;
s outputTotal Setting -1&lt;br /&gt;
j main&lt;br /&gt;
dilutantMustHaveOxygen:&lt;br /&gt;
s outputFuel Color 0&lt;br /&gt;
j ra&lt;br /&gt;
&lt;br /&gt;
fuelRatioCalculation:&lt;br /&gt;
div r0 563452 3&lt;br /&gt;
sub r4 fuelSpecificHeat dilutantSpecificHeat&lt;br /&gt;
mul r1 Tmix r4&lt;br /&gt;
add r0 r0 r1&lt;br /&gt;
mul r1 r6 r4&lt;br /&gt;
sub r0 r0 r1&lt;br /&gt;
div r1 172.615 3&lt;br /&gt;
mul r1 r6 r1&lt;br /&gt;
sub r0 r0 r1&lt;br /&gt;
sub r1 r6 Tmix&lt;br /&gt;
mul r1 r1 dilutantSpecificHeat&lt;br /&gt;
div ratioFuel r1 r0&lt;br /&gt;
j ra&lt;br /&gt;
temperatureMixCalculation:&lt;br /&gt;
sub r4 1 ratioFuel&lt;br /&gt;
mul r0 dilutantSpecificHeat r4&lt;br /&gt;
mul r1 ratioFuel fuelSpecificHeat&lt;br /&gt;
add r3 r0 r1&lt;br /&gt;
mul r0 r7 r4&lt;br /&gt;
mul r0 r0 dilutantSpecificHeat&lt;br /&gt;
mul r1 r5 ratioFuel&lt;br /&gt;
mul r1 r1 fuelSpecificHeat&lt;br /&gt;
add r0 r0 r1&lt;br /&gt;
div Tmix r0 r3&lt;br /&gt;
j ra&lt;br /&gt;
specficHeatCalculation:&lt;br /&gt;
l r5 d5 RatioOxygen&lt;br /&gt;
l r6 d5 RatioVolatiles&lt;br /&gt;
l r7 d5 RatioCarbonDioxide&lt;br /&gt;
l r8 d5 RatioPollutant&lt;br /&gt;
l r9 d5 RatioNitrogen&lt;br /&gt;
l r10 d5 RatioNitrousOxide&lt;br /&gt;
bne r5 r5 noCombustion #protection against null&lt;br /&gt;
mul r0 r5 21.1&lt;br /&gt;
mul r1 r6 20.4&lt;br /&gt;
add r0 r0 r1&lt;br /&gt;
mul r1 r7 28.2&lt;br /&gt;
add r0 r0 r1&lt;br /&gt;
mul r1 r8 24.8&lt;br /&gt;
add r0 r0 r1&lt;br /&gt;
mul r1 r9 20.6&lt;br /&gt;
add r0 r0 r1&lt;br /&gt;
mul r1 r10 23&lt;br /&gt;
add dilutantSpecificHeat r0 r1&lt;br /&gt;
j ra&lt;br /&gt;
&lt;br /&gt;
### End Script ###&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Furnace behaviour ===&lt;br /&gt;
*Only the gas inside the furnace have a temperature (the furnace itself has no temperature, nor will it take heat away from the gas inside)&lt;br /&gt;
*No side reactions have been observed (fuel can be mixed with any other gas with predictable results)&lt;br /&gt;
*For a combustion to occur, the gas must have at least 5% each of both O2 and H2&lt;br /&gt;
*For a combustion to occur, there must be a minimum pressure of 10 kPa &#039;&#039;(0.2.2733.13309 changelog)&#039;&#039;&lt;br /&gt;
*A combustion will consume 95% of the limiting ingredient, O2 or H2 (if there is 10 mol H2, and excess O2, 0.5 mol H2 will remain afterwards)&lt;br /&gt;
*Combustion reaction formula: 1 O2 + 2 H2 -&amp;gt; 6 CO2 + 3 X + 593 107.3684 J &#039;&#039;(this energy value is an approximation, see discussions for details)&#039;&#039;&lt;br /&gt;
*Each press of ignite adds 5 J of energy to the furnace (only the advanced furnace was tested) &#039;&#039;(see discussions)&#039;&#039;&lt;br /&gt;
*A furnace built in a sealed room with vacuum will not loose temperature (this is seen during the furnace tutorial), nor will a furnace built partially/completely inside a fully welded frame.&lt;br /&gt;
*Ores placed in a furnace will release gases, this reduces the temperature and increases the mols of gas.&lt;br /&gt;
*Ingots placed in a furnace will reduce the temperature (~half compared to the ore, only copper tested) without releasing gas.&lt;br /&gt;
*Inserted ores/ingots are processed at a speed of 10 per second, so 5 seconds per stack of 50.&lt;br /&gt;
&lt;br /&gt;
Regular furnace&lt;br /&gt;
*The inlet pipe will only allow gas to enter the furnace, and it will only do so if the pressure in the pipe is higher than the pressure inside the furnace. This behaviour is similar to that of the pressure regulator.&lt;br /&gt;
*The outlet pipe acts like an extension of the furnace, increasing it&#039;s volume by 100L per pipe section, and it can be used as an alternative inlet point if so desired (but it acts a little bit quirky, the pipe and the furnace will have different %gas proportions when doing so, because the gas will only move when there is a pressure difference between the two). A larger furnace volume basically only means it will require a bit more gas, +10% more mol for each unsealed pipe section attached to it, everything else will be the same. The number of junctions on a pipe doesn&#039;t matter, the volume is always 100L. &lt;br /&gt;
*Removing pipes connected to the outlet side should be avoided when the furnace is filled with fuel, doing so can cause some of the gas to vanish permanently.&lt;br /&gt;
&lt;br /&gt;
Advanced furnace&lt;br /&gt;
*The inlet pipe is the only place where gas can enter the furnace (not counting the ore slot). It has a built in volume pump.&lt;br /&gt;
*The outlet pipe is the only place where gas can exit the furnace. It has a built in volume pump.&lt;br /&gt;
*Unlike the regular furnace, the advanced one always have a volume of 1000 L, regardless of how many pipes are attached to it. This saves a little bit of fuel.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Known errors of the math formulas ===&lt;br /&gt;
&lt;br /&gt;
The formulas were created by hand, no data mining or peeking into the game code.&lt;br /&gt;
&amp;lt;br&amp;gt;The calculation for temperature and pressure of a gas mix have a tiny unexplained error that can appear in the 6th digit and it&#039;s most noticeable at very low fuel pressures. &lt;br /&gt;
&amp;lt;br&amp;gt;The reverse calculation (to know how much fuel and diluting gas to add to reach a desired temperature and pressure) requires iteration in order to calculate the temperature obtained after mixing the fuel and the dilutant, but the impact of the starting temperature is still pretty small to begin with, and after a few iterations this error will become negligible.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Using perfect O2 + 2 H2 fuel ===&lt;br /&gt;
The amount of fuel that combusts has no impact on the final temperature. Only the purity of the fuel (more on dirty fuel in the next section) and the temperature of the fuel matters, but the latter can be ignored for practical purposes (only around 3% difference in combustion temperature between fuel that is 1K and fuel that has room temperature). More fuel will always release more total energy, which means it takes increasingly longer for the furnace to cool down.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Temperature peak&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
*T(after) = ( T(before)*61.9 + 563452 ) / 234.515&lt;br /&gt;
**T(after) is the temperature in Kelvin after ignition&lt;br /&gt;
**T(before) is the temperature in Kelvin before ignition&lt;br /&gt;
**The 563452 value is the released energy per mol at 95% combustion efficiency, the full energy isn&#039;t released&lt;br /&gt;
**61.9 is the heat capacity for 1 mol O2 and 2 mol H2, the sum of their specific heat values, the mol amounts comes from the reaction formula&lt;br /&gt;
**234.515 is the heat capacity for the gas obtained when 1 mol O2 and 2 mol H2 combusts with 95% efficiency (243.6 * 0.95 + 61.9 * 0.05) &lt;br /&gt;
*The equation can be arrived at by using the released energy per mol and the specific heat per mol of the mixture before and after combustion, also account for the 95% combustion efficiency.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Pressure peak&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
*P(after) = 2.9 * P(before) * T(after) / T(before)&lt;br /&gt;
**P(after) is the pressure in Pa after ignition &lt;br /&gt;
**P(before) is the pressure in Pa before ignition&lt;br /&gt;
**T(after) is the temperature in Kelvin after ignition&lt;br /&gt;
**T(before) is the temperature in Kelvin before ignition&lt;br /&gt;
**2.9 is the multiple of the number of mol inside the furnace after combustion with 95% efficiency based on the reaction formula&lt;br /&gt;
*The equation can be made from two sets of PV=nRT (one before and one after combustion), linking them via n (combustion makes 3 mols of gas turn into 9 mols), and adjust for the 95% combustion efficiency.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Using diluted fuel ===&lt;br /&gt;
&lt;br /&gt;
Dirty fuel combusts at a lower temperature, the non-combustible gases also helps to increase the pressure. This can be very useful. Adding unreactive gases to a furnace on purpose means that the combustion temperature will be lower and the pressure higher, which helps when making certain alloys. An excess of either oxygen or volatiles will also count as unreactive since they don&#039;t take part in the combustion.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Temperature peak&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
*T(after) = ( T(before) * sum(specific heat * ratio(gas)(before)) + min(ratio(O2), ratio(H2)*0.5) * 563452 ) / ( sum(specific heat * ratio(gas)(before)) + min(ratio(O2), ratio(H2)*0.5) * 172.615)&lt;br /&gt;
**T(after) is the temperature in Kelvin after ignition&lt;br /&gt;
**T(before) is the temperature in Kelvin before ignition&lt;br /&gt;
**sum(x*y) is the sum of all x*y products, used to calculate the total sum of each gas specific heat multiplied with its ratio&lt;br /&gt;
**specific heat is the value given for each gas, it refers to how much energy that is needed to increase the temperature by 1K per mol&lt;br /&gt;
**ratio(gas)(before) is the molecular ratio, given by the tablet as % values for each gas in the mix, before ignition&lt;br /&gt;
**min(x,y) returns the smallest value of x and y&lt;br /&gt;
**563452 comes from the energy released when 1 mol O2 and 2 mol H2 combusts with 95% efficiency&lt;br /&gt;
**172.615 comes from 0.95*(243.6-61.9), this is the change in heat capacity (specific heat*number of mol) of the gas when 1 mol O2 and 2 mol H2 combusts with 95% efficiency into its new compounds&lt;br /&gt;
**The equation comes from calculating the Thermal Energy (temperature*specific heat per mol) before combustion, add the released energy calculated from the ratio of O2, then divide with the &#039;&#039;specific heat per mol&#039;&#039; of the gas obtained after combustion, which is known thanks to the reaction formula, all of this becomes the temperature on ignition&lt;br /&gt;
&lt;br /&gt;
same thing but possibly easier to read&lt;br /&gt;
*T(after) = ( T(before) * specificHeat(before) + fuel * 563452 ) / ( specificHeat(before) + fuel * 172.615)&lt;br /&gt;
**specificHeat(before) = RatioOxygen*21.1 + RatioVolatile*20.4 + RatioCarbonDioxide*28.2 + RatioPollutant*24.8 + RatioNitrogen*20.6 + RatioNitrousOxide*23&lt;br /&gt;
**fuel = min(RatioOxygen,RatioVolatile/2)&lt;br /&gt;
**Notice that water isn&#039;t included. That&#039;s because this haven&#039;t been verified, but water is probably treated as a gas by the game so a good guess is that it can be included simply by adding RatioWater*72 to the specificHeat sum.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Pressure peak&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
*P(after) = P(before) * T(after) * ( 1 + 5.7*min(ratio(O2), ratio(H2)*0.5) ) / T(before)&lt;br /&gt;
**this expression comes from two sets of PV=nRT, one after and one before combustion. The reaction formula say that for each mol consumed O2 we gain 6 mol gas (9-3), this creates a link between the equations, n(after) = n(before)*(1+min(ratio(O2), ratio(H2)*0.5)*6), then include the 0.95 efficiency as well&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Using Ice(Oxite) and Ice(Volatiles) ===&lt;br /&gt;
&lt;br /&gt;
There is a minor difference between which ice is added first. One can also observe a fluctuation in the combustion efficiency compared to when a furnace is fueled with gas. The end result also matters a little bit on how fast the ignition button is pressed when the first ice type is added while doing larger batches.&lt;br /&gt;
&lt;br /&gt;
small batch, oxite first&lt;br /&gt;
*Adding 1 oxite + 1 volatile, in that order&lt;br /&gt;
**Temperature: 2222K, Pressure: 2.03MPa, moles of O2/H2 combusted: 11/21, Combustion efficiency (H2 limited): 95%&lt;br /&gt;
*Adding 1 oxite + 2 volatiles, in that order&lt;br /&gt;
**Temperature: 2514K, Pressure: 4.13MPa, moles of O2/H2 combusted: 22/43, Combustion efficiency (H2 limited): 98%&lt;br /&gt;
&lt;br /&gt;
small batch, volatiles first&lt;br /&gt;
*Adding 1 volatile + 1 oxite, in that order&lt;br /&gt;
**Temperature: 2224K, Pressure: 2.03MPa, moles of O2/H2 combusted: 11/21, Combustion efficiency (H2 limited): 95%&lt;br /&gt;
*Adding 2 volatiles + 1 oxite, in that order&lt;br /&gt;
**Temperature: 2432K, Pressure: 3.93MPa, moles of O2/H2 combusted: 21/42, Combustion efficiency (H2 limited): 95%&lt;br /&gt;
&lt;br /&gt;
large batch, oxite first&lt;br /&gt;
*Adding 5 oxite + 10 volatiles, in that order&lt;br /&gt;
**Temperature: 2463K, Pressure: 18.76MPa, moles of O2/H2 combusted: 96/190, Combustion efficiency (H2 limited): 86%&lt;br /&gt;
*Adding 8 oxite + 16 volatiles, in that order&lt;br /&gt;
**Temperature: 2537K, Pressure: 33.28MPa, moles of O2/H2 combusted: 172/344, Combustion efficiency (H2 limited): 98%&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The difference in combustion efficiency is a mystery. One possibility is that this deviation is a result of multiple consecutive ignitions during the same game tick as the second ice is added, and then the gassy products are added on the following tick. Whatever the reason, using ice in a furnace creates some unpredictability, which give calculations a certain degree of error. So instead of using math, it seems better to write down a table of temperatures and pressure resulting from different amounts of ice.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;9&amp;quot; |&#039;&#039;&#039;Empty furnace, oxite first, no pipes attached&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;Ice&#039;&#039;&#039; &lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;1 oxite&#039;&#039;&#039;&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;2 oxite&#039;&#039;&#039;&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;3 oxite&#039;&#039;&#039;&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;4 oxite&#039;&#039;&#039;&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;5 oxite&#039;&#039;&#039;&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;6 oxite&#039;&#039;&#039;&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;7 oxite&#039;&#039;&#039;&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;8 oxite&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; | &#039;&#039;&#039;1 volatile&#039;&#039;&#039; &lt;br /&gt;
| 2222K&amp;lt;br&amp;gt;2.03MPa &lt;br /&gt;
| ? &lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| 1094K&amp;lt;br&amp;gt;2.59MPa&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; | &#039;&#039;&#039;2 volatile&#039;&#039;&#039; &lt;br /&gt;
| 2514K&amp;lt;br&amp;gt;4.13MPa&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; | &#039;&#039;&#039;3 volatile&#039;&#039;&#039; &lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; | &#039;&#039;&#039;4 volatile&#039;&#039;&#039; &lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; | &#039;&#039;&#039;5 volatile&#039;&#039;&#039; &lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; | &#039;&#039;&#039;6 volatile&#039;&#039;&#039; &lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; | &#039;&#039;&#039;7 volatile&#039;&#039;&#039; &lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; | &#039;&#039;&#039;8 volatile&#039;&#039;&#039; &lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; | &#039;&#039;&#039;9 volatile&#039;&#039;&#039; &lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; | &#039;&#039;&#039;10 volatile&#039;&#039;&#039; &lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| 2463K&amp;lt;br&amp;gt;18.76MPa&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| 2400K&amp;lt;br&amp;gt;21.40MPa&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; | &#039;&#039;&#039;11 volatile&#039;&#039;&#039; &lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| 2451K&amp;lt;br&amp;gt;23.41MPa&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; | &#039;&#039;&#039;12 volatile&#039;&#039;&#039; &lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; | &#039;&#039;&#039;13 volatile&#039;&#039;&#039; &lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; | &#039;&#039;&#039;14 volatile&#039;&#039;&#039; &lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; | &#039;&#039;&#039;15 volatile&#039;&#039;&#039; &lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; | &#039;&#039;&#039;16 volatile&#039;&#039;&#039; &lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| 2537K&amp;lt;br&amp;gt;33.28MPa&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Furnace cooling rate (unfinished) ===&lt;br /&gt;
&lt;br /&gt;
unknown&lt;br /&gt;
&lt;br /&gt;
Observations&lt;br /&gt;
*the rate of cooling is temperature dependent, hotter cools faster (furnace temp - surrounding temp? how do vaccum behave?)&lt;br /&gt;
*the rate of cooling is time dependent (game tick speed is once per 0.5 seconds)&lt;br /&gt;
*the rate of cooling is mol dependent (small amounts cool faster)&lt;br /&gt;
*pipes attached to the exhaust effect the cooling rate, and since they effectively increase the volume of the furnace the amount of mol of hot gas will be different too&lt;br /&gt;
*adding ores decreases the temperature (do melting cost energy? or is this just from heating the trapped gases inside the ore?)&lt;br /&gt;
&lt;br /&gt;
Possible experimental setup to measure dT/dt&lt;br /&gt;
*Hold a tablet with an atmos cartridge in the right hand (so it can be read when the game is paused). Aim the tablet against the furnace and pause with ESC, double tap ESC to move the game forward one tick, record the temperatures.&lt;br /&gt;
*Remember to record the &#039;&#039;total amount of moles&#039;&#039; as well&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Calculating how to reach a desired Temperature and Pressure on ignition ===&lt;br /&gt;
&lt;br /&gt;
There are only 4 variables required for this calculation.&lt;br /&gt;
#Intial fuel mix temperature (furnace temperature before ignition)&lt;br /&gt;
#Desired temperature on ignition (you choose)&lt;br /&gt;
#Desired pressure on ignition (you choose)&lt;br /&gt;
#The specific heat value of the gas used to dilute the fuel (if a mix of gases is used, the specific heat to use is the average specific heat per mol, example calculation below)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;The equations will give these results&lt;br /&gt;
#The ratio(fuel) in the fuel-dilutant mix. (0.75 means 75% perfect 1:2 fuel mols (O2 and H2 added together)†, the other 25% will be dilutant gas mols, making it a 1:2:1 mix of O2:H2:dilutant)&lt;br /&gt;
#The total pressure of the fuel-dilutant mix inside the furnace before ignition&lt;br /&gt;
†It&#039;s helpful to separate out the fuel part like this since everyone should be using pre-mixed fuel, it makes the diluting easier and has a lower risk to cause confusion when using either O2 or H2 to be the dilutant gas&lt;br /&gt;
&lt;br /&gt;
To freely control the temperature and pressure, the fuel must be diluted with a non-combustable gas. This can be added either before or after ignition, doing so before ignition makes it alot easier to predict, doing so after ignition is more of an art than a science (it depends on how the furnace is built and how fast the operator can work). The method prefered here is to add the non-combustable gas before ignition. &lt;br /&gt;
&lt;br /&gt;
Diluting the fuel can be done in the furnace directly or in pipes outside of it. There are good and bad points with both ways. Diluting outside fits the advanced furnace best (the built-in volume pump can easily move all of the prepared gas inside), diluting inside fits the regular furnace best (the exhaust outlet can be used as an inlet but it&#039;s a little bit quirky, and diluting in pipes outside means not all of the prepared gas can be moved into the furnace (the pipe directly on the furnace inlet will hold on to some of the diluted fuel) so extra gas must always be prepared).&lt;br /&gt;
&lt;br /&gt;
It is worth noting that for some temperatures and pressures suitable for advanced alloys, the calculation can suggest a fuel ratio below 0.15. This will not work however, since it means having less than 5% oxygen, that mix will not combust (unless the dilutant contains extra oxygen). This is a particular problem with &#039;&#039;&#039;Waspalloy&#039;&#039;&#039; (400-800K, 50+MPa), that can be solved by having oxygen in the diluting gas (a 5% ratio, having more doesn&#039;t help), but it&#039;s easier to just ignite the furnace prematurely and then finish adding the remaining dilutant.&lt;br /&gt;
&lt;br /&gt;
The dilution can be always be double checked by using the tablet and looking at the mol% values for the fuel mix. If the outlet on the regular furnace was used as an inlet, the first gas that entered there will have been mostly pushed back into the furnace, making the mol% values diffrent but the total number of mol are still the same.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Calculating the fuel ratio&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
*ratio(fuel) = s*( T(after) - T(before) ) / ( 187817 + T(before)*(20.633 - s) - T(after)*(78.172 - s) )&lt;br /&gt;
**ratio(fuel), 1 = 100% fuel which is 33.33% O2 and 66.67% H2&lt;br /&gt;
**T(after) is the chosen temperature after ignition, in K&lt;br /&gt;
**T(before) is the furnace temperature before ignition, in K&lt;br /&gt;
**s = specific heat of diluting gas&lt;br /&gt;
***if the dilutant is a mix of gases, calculate the average specific heat in that mix per mol&lt;br /&gt;
***example: 15% N2 and 85% CO2 as dilutant -&amp;gt; specific heat = 0.15*20.6 + 0.85*28.2 = 27.06&lt;br /&gt;
*This equation comes from the equation under &#039;&#039;Using diluted fuel&#039;&#039;, it was arrived at by doing the following things&lt;br /&gt;
**ratio(fuel) was introduced (which is 3 times higher than min(ratio(O2),ratio(H2)*0.5), everyone should be using pre-mixed fuel so this should make things simpler, having 1 represent 100% fuel is also more intutive than having 0.333 mean 100% fuel&lt;br /&gt;
**everything is calculated per 1 mol fuel here, the original one uses per 3 mol fuel (1 mol O2 + 2 mol H2), so several values must be divided by 3&lt;br /&gt;
**the dilutant (even a mix) can be treated as a single gas, which turns &#039;&#039;sum(specific heat * mol of gas (before))&#039;&#039; into &#039;&#039;ratio(fuel)*(specific heat(O2)+2*specific heat(H2) )/3 + (1-ratio(fuel))*specific heat(dilutant)&#039;&#039;&lt;br /&gt;
**min(ratio(O2),ratio(H2)*0.5) will now always be ratio(fuel)/3, so it can be replaced with that&lt;br /&gt;
**without any rounding the formula is: ratio(fuel) = s*(T(after) - T(before)) / ( T(before)*(61.9/3-s) + (0.95*593107.3684/3) - T(after)*(61.9/3-s) - T(after)*(0.95*181.7/3) )&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Calculating the pressure before ignition&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
*P(before) = P(after)*T(before) / ( T(after) * (1 + ratio(fuel)*1.9) )&lt;br /&gt;
**ratio(fuel) is the result from the temperature calculation above&lt;br /&gt;
**P(after) = the chosen pressure value, in Pa&lt;br /&gt;
**T(before) = temperature of fuel mix in the furnace before ignition, in K&lt;br /&gt;
**T(after) = the chosen value used in the temperature calculation above, in K&lt;br /&gt;
*This equation was arrived at by starting with the one under &#039;&#039;Using diluted fuel&#039;&#039; and replacing min(ratio(O2),ratio(H2)*0.5) with ratio(fuel)/3&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Diluting fuel&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Mixing gas is temperature sensitive. This is because pressure is used as an indirect measure of the amount of mol (n=PV/(RT)) being transfered, and pressure is also dependent on temperature. It is however possible to get around this issue with a bit of math.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;A)&#039;&#039;&#039; When fuel and dilutant have the same temperature&lt;br /&gt;
*Add the fuel&lt;br /&gt;
**fuel pressure = ratio(fuel) * P(before)&lt;br /&gt;
*Add the dilutant until the pressure P(before) is reached &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;B)&#039;&#039;&#039; When fuel and dilutant have different temperature&lt;br /&gt;
*T(mix) = sum( T(before)*ratio(after)*sh ) / sum( ratio(after)*sh )&lt;br /&gt;
**T(mix) is the temperature after combining all gases&lt;br /&gt;
**T(before) is the temperature that each individual gas compound involved (O2, H2, CO2 etc) has before mixing them&lt;br /&gt;
**ratio(after) is a value between 0 and 1, the %mol ratio, in the final mix&lt;br /&gt;
**sh is the specific heat for each individual gas&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;(same thing, different way of writing it)&#039;&#039;&lt;br /&gt;
*T(mix) = ( T(fuel)*ratio(fuel)*20.633 + T(dilutant)*ratio(dilutant)*s ) / ( ratio(fuel)*20.633 + ratio(dilutant)*s )&lt;br /&gt;
**T(mix) is the temperature &#039;&#039;after&#039;&#039; combining the fuel and dilutant&lt;br /&gt;
**T(fuel) is the temperature of the fuel &#039;&#039;before&#039;&#039; mixing&lt;br /&gt;
**T(dilutant) is the temperature of the dilutant &#039;&#039;before&#039;&#039; mixing&lt;br /&gt;
**ratio(fuel) is the ratio of fuel &#039;&#039;after&#039;&#039; mixing everything&lt;br /&gt;
**ratio(dilutant) is the ratio of dilutant &#039;&#039;after&#039;&#039; mixing everything&lt;br /&gt;
**s is the specific heat of the dilutant (if the dilutant is a mix of gases, see example under the calculation for ratio(fuel) above)&lt;br /&gt;
&lt;br /&gt;
Mixing fuel and dilutant of different temperature&lt;br /&gt;
*Add the fuel&lt;br /&gt;
**fuel pressure = ratio(fuel) * P(before) * T(fuel) / T(mix)&lt;br /&gt;
*Add the dilutant&lt;br /&gt;
**keep adding until the pressure P(before) is reached&lt;br /&gt;
*The temperature should now be the same as the calculated T(mix) value, unless there was warming or cooling of the gases during the mixing process (in that case, the fuel-dilutant mix has slightly too much or too little dilutant in it, use the tablet to check the ratio of H2 or O2)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Double-checking the fuel-dilutant mix&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Use the tablet with the amtospherics cartridge and compare the measured mol% with one of the following equations. If neither O2 nor H2 is used as dilutant, they will both give the same result.&lt;br /&gt;
*When O2 is in excess&lt;br /&gt;
**ratio(H2) = ratio(fuel)*2/3&lt;br /&gt;
*When H2 is in excess&lt;br /&gt;
**ratio(O2) = ratio(fuel)/3&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Example calculation ====&lt;br /&gt;
It&#039;s a warm and sunny day on Europa and a stationeer wants to make some invar. The desired temperature and pressure will be chosen as be the upper limit for invar, so 1500K and 20MPa. Adding ore to the furnace will reduce its temperature and increase the amount of gas (and pressure) inside of it, but the stationeer hopes that 100g of invar will be too little to have much of an effect. The furnace is exposed to the atmosphere and will be loosing temperature and pressure fairly fast which could be an issue, but making the alloy should be quick enough. The dilutant gas will be pure O2 from the atmosphere, which has a specific heat value of 21.1. The starting temperature of the fuel and the atmosphere are both at -140°C.&lt;br /&gt;
&lt;br /&gt;
*ratio(fuel) = s*( T(after) - T(before) ) / ( 187817 + T(before)*(20.633 - s) - T(after)*(78.172 - s) )&lt;br /&gt;
**s = specific heat of the dilutant = 21.1&lt;br /&gt;
**T(after) = 1500K (this is the chosen value)&lt;br /&gt;
**T(before) = -140C = 133K (temperature inside the furnace before ignition)&lt;br /&gt;
*ratio(fuel) = 0.28237&lt;br /&gt;
*This is high enough for combustion to occur&lt;br /&gt;
**H2 is the limiting gas so %H2 must be at least 5%, the minimum value can be expressed as %H2 = ratio(fuel)*2/3 = 5%, solving for ratio(fuel) gives us 0.075, which is the lowest ratio(fuel) at which combustion can occur&lt;br /&gt;
&lt;br /&gt;
The necessary pressure of the pre-ignition fuel mix inside the furnace will be&lt;br /&gt;
*P(before) = P(after)*T(before) / ( T(after) * (1 + ratio(fuel)*1.9) )&lt;br /&gt;
**ratio(fuel) = 0.28237&lt;br /&gt;
**P(after) = 20MPa (this is the chosen value)&lt;br /&gt;
**T(before) = -140C = 133K&lt;br /&gt;
**T(after) = 1500K (this is the chosen value used in the temperature calculation)&lt;br /&gt;
*P(before) = 1154.1kPa&lt;br /&gt;
&lt;br /&gt;
Dilution calculations&lt;br /&gt;
*The needed pressure of pure fuel inside the furnace will be&lt;br /&gt;
**P(fuel) = ratio(fuel) * P(before) = 0.28237 * 1154.1kPa = 325.88kPa&lt;br /&gt;
*The dilutant will then be added to the furnace to reach the P(before) pressure at 1.16MPa (1154kPa rounded up)&lt;br /&gt;
*The ratio of H2 inside the furnace before ignition can be checked with the tablet, it should be&lt;br /&gt;
**ratio(H2) = 0.28237 * 2/3 = 0.188 = 19%&lt;br /&gt;
&lt;br /&gt;
This was tested in practice. After adding fuel and dilutant the game was saved, then the furnace was ignited. Adding the ores reduced the temperature and increased the pressure a bit, which pushed the pressure up above 20MPa and out of the needed range. After waiting for the pressure to drop back down, the temperature was still high enough to make the desired alloy with several seconds to spare. In hindsight, 20MPa was a bit too high and 1500K a bit too low, better values could definately have been chosen.&lt;br /&gt;
&lt;br /&gt;
Reloading the save and placing the furnace inside a welded frame to insulate it (no loss of temperature or pressure) showed the following. The furnace reached 1477K and 19.90MPa after ignition. The fuel was added with a regulator (the furnace showed: 325kPa, 133K), the fuel mix was decent but not a perfect 1:2. Then the diluting O2 was added, it was slightly too cold (the furnace now showed: 1.16MPa, 130K), so a bit too much dilutant was added to the furnace (since cold gas has a lower pressure). The dilutant was inserted via the furnace outlet, checking the mol% with the tablet showed 3% H2 in the outlet pipe and 20% inside the furnace instead of 19% in both, the total number of H2 mol was unchanged. The temperature and pressure was really close to the calculated ones, even though the execution was a bit sloppy. The observed loss of temperature could be explained by using too much dilutant, using a lower starting temperature and a flawed fuel mix. The lower pressure is related to the temperature, going from 1500K to 1477K should mean -1.5% reduction in pressure, but the change was just -0.5%, an indication that too much dilutant had been added.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Charts for fuel and dilutant mixes at 25°C===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;4&amp;quot; |&#039;&#039;&#039;Pure fuel at 25°C (perfect mix, 33.33% O2 and 66.67% H2)&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;Temperature (K)&#039;&#039;&#039; &lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;Pressure&#039;&#039;&#039;&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;Fuel (25°C, 298K)&#039;&#039;&#039;&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;Comment&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| 2481 K&lt;br /&gt;
| 1.5 MPa&lt;br /&gt;
| 62 kPa&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 2481 K&lt;br /&gt;
| 22 MPa&lt;br /&gt;
| 911 kPa&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 2481 K&lt;br /&gt;
| 60 MPa&lt;br /&gt;
| 2485 kPa&lt;br /&gt;
| Explosion warning&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;6&amp;quot; |&#039;&#039;&#039;Perfect fuel diluted with CO2 (specific heat = 28.5, highest value)&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;Temperature (K)&#039;&#039;&#039; &lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;Pressure&#039;&#039;&#039;&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;Fuel (25°C, 298K)&#039;&#039;&#039;&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;Dilutant (25°C, 298K)&#039;&#039;&#039;&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;Fuel + Dilutant (25°C, 298K)&#039;&#039;&#039;&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;Comment&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| 550 K&lt;br /&gt;
| 1.5 MPa&lt;br /&gt;
| 34 kPa&lt;br /&gt;
| 715 kPa&lt;br /&gt;
| 749 kPa&lt;br /&gt;
| Will not ignite (must ignite before all dilutant is added)&lt;br /&gt;
|-&lt;br /&gt;
| 1200 K&lt;br /&gt;
| 1.5 MPa&lt;br /&gt;
| 54.5 kPa&lt;br /&gt;
| 214.5 kPa&lt;br /&gt;
| 269 kPa&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 1200 K&lt;br /&gt;
| 22 MPa&lt;br /&gt;
| 800 kPa&lt;br /&gt;
| 3144 kPa&lt;br /&gt;
| 3944 kPa&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 1500 K&lt;br /&gt;
| 19 MPa&lt;br /&gt;
| 731 kPa&lt;br /&gt;
| 1655 kPa&lt;br /&gt;
| 2386 kPa&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;6&amp;quot; |&#039;&#039;&#039;Perfect fuel diluted with H2 (specific heat = 20.4, lowest value)&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;Temperature (K)&#039;&#039;&#039; &lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;Pressure&#039;&#039;&#039;&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;Fuel (25°C, 298K)&#039;&#039;&#039;&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;Dilutant (25°C, 298K)&#039;&#039;&#039;&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;Fuel + Dilutant (25°C, 298K)&#039;&#039;&#039;&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;Comment&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| 550 K&lt;br /&gt;
| 1.5 MPa&lt;br /&gt;
| 25 kPa&lt;br /&gt;
| 740 kPa&lt;br /&gt;
| 765 kPa&lt;br /&gt;
| Will not ignite (must ignite before all dilutant is added)&lt;br /&gt;
|-&lt;br /&gt;
| 1200 K&lt;br /&gt;
| 1.5 MPa&lt;br /&gt;
| 44.5 kPa&lt;br /&gt;
| 243.5 kPa&lt;br /&gt;
| 288 kPa&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 1200 K&lt;br /&gt;
| 22 MPa&lt;br /&gt;
| 652 kPa&lt;br /&gt;
| 3572 kPa&lt;br /&gt;
| 4224 kPa&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 1500 K&lt;br /&gt;
| 19 MPa&lt;br /&gt;
| 624 kPa&lt;br /&gt;
| 1966 kPa&lt;br /&gt;
| 2590 kPa&lt;br /&gt;
|&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=IC10&amp;diff=11307</id>
		<title>IC10</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=IC10&amp;diff=11307"/>
		<updated>2021-10-22T11:15:36Z</updated>

		<summary type="html">&lt;p&gt;Wark: /* Harvie automation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:MIPS Programming]]&lt;br /&gt;
=MIPS scripting language for IC10 housings / chips=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Text after a # will be ignored to the end of the line. The amount of white&lt;br /&gt;
# space between arguments isn&#039;t important, but new lines start a new command.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Registers==&lt;br /&gt;
The IC contains 16 registers, numbered r0-r15. Think of these as variables in other programming languages. In fact, you can name them with the alias command (see below).&lt;br /&gt;
&lt;br /&gt;
To set a register directly (such as r0=2), use the &amp;lt;b&amp;gt;move&amp;lt;/b&amp;gt; command. To read a value from a device, use l (load). To write a value back to a device, use s (set). Note that&lt;br /&gt;
like most machine languages, the &amp;lt;i&amp;gt;destination&amp;lt;/i&amp;gt; goes first, so instructions always look like: action destination source.&lt;br /&gt;
&lt;br /&gt;
There are two more registers. One called ra (return address) and one called sp (stack pointer). The ra is used by certain jump and branching instructions (those ending with -al) to remember which line in the script it should return to. The sp tracks the next index within the stack (a memory that can store up to 512 values) to be pushed (written) to or popped (read) from. Neither ra or sp is protected, their values can be changed by instructions like any other register.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 10&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Sets r0 to the value 10&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 r1&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Copies the value of r1 to r0&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r0 d0&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Reads from device 0 and places the value in r0&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s d0 r0&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Writes the value from register 0 out to device 0&lt;br /&gt;
&lt;br /&gt;
==Device Ports==&lt;br /&gt;
ICs can interact with up to 6 other devices via d0 - d5, as well as the device it&#039;s attached to via db. To change or set a device, use a screwdriver and adjust the device in the IC housing. You can read or set any of the device&#039;s properties, so it is possible to do things like read the pressure and oxygen content of a room on the same Device port. &lt;br /&gt;
&lt;br /&gt;
The l (load) and s (set) instructions let you read and set values on a device.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r0 d0 Temperature&amp;lt;/code&amp;gt; #Reads the temperature from an atmosphere sensor into r0.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s d1 Setting r0 &amp;lt;/code&amp;gt; # Writes r0 to the device on port 1 to the Setting variable.&lt;br /&gt;
&lt;br /&gt;
==Labels==&lt;br /&gt;
Lables are used to make it easier to jump between lines in the script. The label will have a numerical value that is the same as its line number. Even though it&#039;s possible to use a labels value for calculations, doing so is a bad idea since any changes to the code can change the line numbers of the labels.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;main:&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;j main&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Constants==&lt;br /&gt;
Instead of using a register to store a fixed value, a constant can be made. Using this name will refer to the assigned value.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;define pi 3.14159&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move r0 pi&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Indirect referencing==&lt;br /&gt;
This is a way of accessing a register by using another register as a pointer. Adding an additional r infront of the register turns on this behaviour. The value stored in the register being used as the pointer must be between 0 to 15, this will then point to a register from r0 to r15, higher or lower values will cause an error.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 5&amp;lt;/code&amp;gt; stores the value 5 in r0&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move rr0 10&amp;lt;/code&amp;gt; is now the same as &amp;lt;code&amp;gt;move r5 10&amp;lt;/code&amp;gt; since r0 has the value 5, rr0 points at the register r5&lt;br /&gt;
&lt;br /&gt;
Additional r&#039;s can be added to do indirect referencing multiple times in a row.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move r1 2&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move r2 3&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move rrr1 4&amp;lt;/code&amp;gt; is now the same as &amp;lt;code&amp;gt;move r3 4&amp;lt;/code&amp;gt; since r1 points at r2 which points at r3&lt;br /&gt;
&lt;br /&gt;
This also works with devices&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;move r0 2&amp;lt;/code&amp;gt; stores the value 2 in r0&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;s dr0 On 1&amp;lt;/code&amp;gt; is now the same as &amp;lt;code&amp;gt;s d2 On 1&amp;lt;/code&amp;gt;, r0 has the value 2 so dr0 points at d2&lt;br /&gt;
&lt;br /&gt;
==Debugging advice==&lt;br /&gt;
The value stored in a register can easily be seen by writing it to the Setting parameter of the IC housing, this has no sideeffects, too see the value just stand close and look directly at the housing (&amp;lt;code&amp;gt;s db Setting r0&amp;lt;/code&amp;gt;).&lt;br /&gt;
&amp;lt;br&amp;gt;To check if a certain block of code is executed, use the above trick but with a number that you choose, like the line number (&amp;lt;code&amp;gt;s db Setting 137&amp;lt;/code&amp;gt;).&lt;br /&gt;
&amp;lt;br&amp;gt;The configuration card can be used to manually check the data values stored in all connected devices.&lt;br /&gt;
&lt;br /&gt;
==What a typical program looks like==&lt;br /&gt;
A program is usually written to be a long continuous loop, that compares values to determine what to do next, sometimes it jumps out of the main loop to do a task before returning back to it. The &amp;lt;code&amp;gt;yield&amp;lt;/code&amp;gt; instruction will force the program to wait to the next game tick, so the rest of the game can keep running, but the game is smart enough to force programs to take breaks to prevent them from freezing the entire game if &amp;lt;code&amp;gt;yield&amp;lt;/code&amp;gt; is missing. The &amp;lt;code&amp;gt;beq&amp;lt;/code&amp;gt; means &amp;quot;branch (jump) if equal&amp;quot; and compares two numbers.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
alias myDevice d0&lt;br /&gt;
alias myImportantNumber r4&lt;br /&gt;
&lt;br /&gt;
main:&lt;br /&gt;
yield&lt;br /&gt;
#this is a comment, the program will ignore it, they are often used to explain something to a reader, or to turn off instructions without deleting them&lt;br /&gt;
...&lt;br /&gt;
beq myImportantNumber 42 myFunction&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
myFunction:&lt;br /&gt;
...&lt;br /&gt;
j main&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Instructions=&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;alias&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;alias&lt;br /&gt;
:alias str r? d? # labels register or device reference with name.  When alias is applied to a device, it will affect what shows on the screws in the IC base.  (housing)&lt;br /&gt;
&amp;lt;code&amp;gt;alias vTemperature r0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;alias dAutoHydro1 d0&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;move&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;move    &lt;br /&gt;
:d s     # stores the value of s in d&lt;br /&gt;
&amp;lt;code&amp;gt;move r0 42 # Store 42 in register 0&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;l&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;load&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;l (load)&lt;br /&gt;
:l r# d# parameter&lt;br /&gt;
Reads from a device (d#) and stores the value in a register (r#)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r0 d0 Setting&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Read from the device on d0 into register 0&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l r1 d5 Pressure&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Read the pressure from a sensor&lt;br /&gt;
&lt;br /&gt;
This also works with aliases. For example:&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
alias Sensor d0 &amp;lt;br/&amp;gt;&lt;br /&gt;
l r0 Sensor Temperature&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;ls&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;load slot&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ls (load slot)&lt;br /&gt;
:ls r# d# slotNum parameter&lt;br /&gt;
Reads from a slot (slotNum) of a device (d#)  and stores the value in a register (r#)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;ls r0 d0 2 Occupied&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;Read from the second slot of device on d0, stores 1 in r0 if it&#039;s occupied, 0 otherwise.&lt;br /&gt;
&lt;br /&gt;
And here is the code to read the charge of an AIMeE:&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
alias robot d0 &amp;lt;br/&amp;gt;&lt;br /&gt;
alias charge r0 &amp;lt;br/&amp;gt;&lt;br /&gt;
ls charge robot 0 Charge &lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;s&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;set&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;s (set)&lt;br /&gt;
:s d# parameter r#&lt;br /&gt;
Writes a setting to a device. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s d0 Setting r0&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;add&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;add     &lt;br /&gt;
:d s t   # calculates s + t and stores the result in d&lt;br /&gt;
&amp;lt;code&amp;gt;add r0 r1 1 # add 1 to r1 and store the result as r0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;add r0 r0 1 # increment r0 by one&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;sub&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;sub     &lt;br /&gt;
:d s t   # calculates s - t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;mul&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;mul     &lt;br /&gt;
:d s t   # calculates s * t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;div&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;div     &lt;br /&gt;
:d s t   # calculates s / t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;mod&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;mod     &lt;br /&gt;
:d s t   &lt;br /&gt;
::# calculates s mod t and stores the result in d. Note this&lt;br /&gt;
::# doesn&#039;t behave like the % operator - the result will be &lt;br /&gt;
::# positive even if the either of the operands are negative&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;slt&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;slt     &lt;br /&gt;
:d s t   # stores 1 in d if s &amp;lt; t, 0 otherwise&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;sqrt&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;sqrt    &lt;br /&gt;
:d s     # calculates sqrt(s) and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;round&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;round   &lt;br /&gt;
:d s     # finds the rounded value of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;trunc&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;trunc   &lt;br /&gt;
:d s     # finds the truncated value of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;ceil&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ceil   &lt;br /&gt;
: d s     # calculates the ceiling of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;floor&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;floor  &lt;br /&gt;
: d s     # calculates the floor of s and stores the result in d&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;max&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;max    &lt;br /&gt;
: d s t   # calculates the maximum of s and t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;min&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;min    &lt;br /&gt;
: d s t   # calculates the minimum of s and t and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;abs&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;abs    &lt;br /&gt;
: d s     # calculates the absolute value of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;log&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;log    &lt;br /&gt;
: d s     # calculates the natural logarithm of s and stores the result&lt;br /&gt;
::# in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;exp&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;exp    &lt;br /&gt;
: d s     # calculates the exponential of s and stores the result in d&lt;br /&gt;
&amp;lt;div id=&amp;quot;rand&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;rand   &lt;br /&gt;
: d       # selects a random number uniformly at random between 0 and 1&lt;br /&gt;
::# inclusive and stores the result in d&lt;br /&gt;
&lt;br /&gt;
::# boolean arithmetic uses the C convention that 0 is false and any non-zero&lt;br /&gt;
::# value is true.&lt;br /&gt;
&amp;lt;div id=&amp;quot;and&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;and    &lt;br /&gt;
: d s t   # stores 1 in d if both s and t have non-zero values,&lt;br /&gt;
::# 0 otherwise&lt;br /&gt;
&amp;lt;div id=&amp;quot;or&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;or     &lt;br /&gt;
: d s t   # stores 1 in d if either s or t have non-zero values,&lt;br /&gt;
::# 0 otherwise&lt;br /&gt;
&amp;lt;div id=&amp;quot;xor&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;xor    &lt;br /&gt;
: d s t   # stores 1 in d if exactly one of s and t are non-zero,&lt;br /&gt;
::# 0 otherwise&lt;br /&gt;
&amp;lt;div id=&amp;quot;nor&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;nor &lt;br /&gt;
:    d s t   # stores 1 in d if both s and t equal zero, 0 otherwise&lt;br /&gt;
::# Lines are numbered starting at zero&lt;br /&gt;
&amp;lt;div id=&amp;quot;j&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;j&lt;br /&gt;
:             a # jumps to line a.&lt;br /&gt;
&amp;lt;div id=&amp;quot;bltz&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bltz&lt;br /&gt;
:      s   a # jumps to line a if s &amp;lt;  0&lt;br /&gt;
&amp;lt;div id=&amp;quot;blez&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;blez &lt;br /&gt;
:     s   a # jumps to line a if s &amp;lt;= 0&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;bgez&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bgez &lt;br /&gt;
:     s   a # jumps to line a if s &amp;gt;= 0&lt;br /&gt;
&amp;lt;div id=&amp;quot;bgtz&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bgtz&lt;br /&gt;
:      s   a # jumps to line a if s &amp;gt;  0&lt;br /&gt;
&amp;lt;div id=&amp;quot;beq&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;beq &lt;br /&gt;
:      s t a # jumps to line a if s == t&lt;br /&gt;
&amp;lt;div id=&amp;quot;bne&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bne &lt;br /&gt;
:      s t a # jumps to line a if s != t&lt;br /&gt;
&amp;lt;div id=&amp;quot;bdseal&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;bdseal&lt;br /&gt;
:    d? a(r?|num) # Jump execution to line a and store current line number if device d? is set.&lt;br /&gt;
&amp;lt;code&amp;gt;bdseal d0 32 #Store line number and jump to line 32 if d0 is assigned.&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;BR&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;bdseal dThisVictim HarvestCrop #Store line in ra and jump to sub HarvestCrop if device dThisVictim is assigned.&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;yield&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;yield           &lt;br /&gt;
: 	# ceases code execution for this power tick&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;lb&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;lb&lt;br /&gt;
:      r? typeHash var batchMode # Loads var from all output network devices with provided typeHash  using provided batchMode: Average(0), Sum (1), Minimum (2), Maximum (3). Can be used word or number. Result store into r?&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;sb&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;sb&lt;br /&gt;
:      typeHash var r? # Store register r? to var on all output network devices with provided typeHash&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
; #&lt;br /&gt;
:     # The following text will be ignored during compiling; use this to create comments.&lt;br /&gt;
&lt;br /&gt;
[https://www.cs.tufts.edu/comp/140/lectures/Day_3/mips_summary.pdf Other examples]&lt;br /&gt;
&lt;br /&gt;
== Conditional functions cheatsheet ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! suffix !! description !! branch to line !! branch and store return address !! relative jump to line !! set register&lt;br /&gt;
|-&lt;br /&gt;
| prefix: ||  || b- || b-al || br- || s-&lt;br /&gt;
|-&lt;br /&gt;
|  || unconditional || j    || jal    || jr    || &lt;br /&gt;
|-&lt;br /&gt;
| -eq  || if a == b || beq  || beqal  || breq  || seq&lt;br /&gt;
|-&lt;br /&gt;
| -eqz || if a == 0 || beqz || beqzal || breqz || seqz&lt;br /&gt;
|-&lt;br /&gt;
| -ge  || if a &amp;gt;= b || bge  || bgeal  || brge  || sge&lt;br /&gt;
|-&lt;br /&gt;
| -gez || if a &amp;gt;= 0 || bgez || bgezal || brgez || sgez&lt;br /&gt;
|-&lt;br /&gt;
| -gt  || if a &amp;gt; b  || bgt  || bgtal  || brgt  || sgt&lt;br /&gt;
|-&lt;br /&gt;
| -gtz || if a &amp;gt; 0  || bgtz || bgtzal || brgtz || sgtz&lt;br /&gt;
|-&lt;br /&gt;
| -le  || if a &amp;lt;= b || ble  || bleal  || brle  || sle&lt;br /&gt;
|-&lt;br /&gt;
| -lez || if a &amp;lt;= 0 || blez || blezal || brlez || slez&lt;br /&gt;
|-&lt;br /&gt;
| -lt  || if a &amp;lt; b  || blt  || bltal  || brlt  || slt&lt;br /&gt;
|-&lt;br /&gt;
| -ltz || if a &amp;lt; 0  || bltz || bltzal || brltz || sltz&lt;br /&gt;
|-&lt;br /&gt;
| -ne  || if a != b || bne  || bneal  || brne  || sne&lt;br /&gt;
|-&lt;br /&gt;
| -nez || if a != 0 || bnez || bnezal || brnez || snez&lt;br /&gt;
|-&lt;br /&gt;
| -dns || if device d is not set          || bdns || bdnsal || brdns || sdns&lt;br /&gt;
|-&lt;br /&gt;
| -dse || if device d is set              || bdse || bdseal || brdse || sdse&lt;br /&gt;
|-&lt;br /&gt;
| -ap  || if a approximately equals b     || bap  || bapal  || brap  || sap&lt;br /&gt;
|-&lt;br /&gt;
| -apz || if a approximately equals 0     || bapz || bapzal || brapz || sapz&lt;br /&gt;
|-&lt;br /&gt;
| -na  || if a not approximately equals b || bna  || bnaal  || brna  || sna&lt;br /&gt;
|-&lt;br /&gt;
| -naz || if a not approximately equals 0 || bnaz || bnazal || brnaz || snaz&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
All &amp;lt;code&amp;gt;b-&amp;lt;/code&amp;gt; commands require target line as last argument, all &amp;lt;code&amp;gt;s-&amp;lt;/code&amp;gt; commands require register to store result as first argument. All &amp;lt;code&amp;gt;br-&amp;lt;/code&amp;gt; commands require number to jump relatively as last argument. e.g. &amp;lt;code&amp;gt;breq a b 3&amp;lt;/code&amp;gt; means if a=b then jump to 3 lines after.&lt;br /&gt;
&lt;br /&gt;
All approximate functions require additional argument denoting how close two numbers need to be considered equal. E.g.: &amp;lt;code&amp;gt;sap r0 100 101 0.01&amp;lt;/code&amp;gt; will consider 100 and 101 almost equal (not more than 1%=0.01 different) and will set r0 to 1. The exact formula is &amp;lt;code&amp;gt;if abs(a - b) &amp;lt;= max(c * max(abs(a), abs(b)), float.epsilon * 8)&amp;lt;/code&amp;gt; for &amp;lt;code&amp;gt;-ap&amp;lt;/code&amp;gt; and is similar for other approximate functions.&lt;br /&gt;
&lt;br /&gt;
==Device Variables==&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Activate&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Activate&lt;br /&gt;
:1 if device is activated (usually means running), otherwise 0&lt;br /&gt;
:&amp;lt;code&amp;gt;l r0 d0 Activate # sets r0 to 1 if on or 0 if off&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;AirRelease&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;AirRelease&lt;br /&gt;
&amp;lt;div id=&amp;quot;Charge&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Charge&lt;br /&gt;
:    The current charge the device has.&lt;br /&gt;
&amp;lt;div id=&amp;quot;CLearMemory&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;CLearMemory&lt;br /&gt;
:    When set to 1, clears the counter memory (e.g. ExportCount).  Will set itself back to 0 when triggered.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Color&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Color&lt;br /&gt;
:    0 (or lower) = Blue&lt;br /&gt;
:    1 = Grey&lt;br /&gt;
:    2 = Green&lt;br /&gt;
:    3 = Orange&lt;br /&gt;
:    4 = Red&lt;br /&gt;
:    5 = Yellow&lt;br /&gt;
:    6 = White&lt;br /&gt;
:    7 = Black&lt;br /&gt;
:    8 = Brown&lt;br /&gt;
:    9 = Khaki&lt;br /&gt;
:    10 = Pink&lt;br /&gt;
:    11 (or higher) = Purple&lt;br /&gt;
&amp;lt;div id=&amp;quot;CompletionRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;CompletionRatio&lt;br /&gt;
&amp;lt;div id=&amp;quot;ElevatorLevel&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ElevatorLevel&lt;br /&gt;
&amp;lt;div id=&amp;quot;ElevatorSpeed&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ElevatorSpeed&lt;br /&gt;
&amp;lt;div id=&amp;quot;Error&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Error&lt;br /&gt;
:	1 if device is in error state, otherwise 0&lt;br /&gt;
&amp;lt;div id=&amp;quot;ExportCount&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ExportCount&lt;br /&gt;
:    How many items exporfted since last ClearMemory.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Filtration&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Filtration&lt;br /&gt;
:	The current state of the filtration system.  For example filtration = 1 for a Hardsuit when filtration is On.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Harvest&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Harvest&lt;br /&gt;
:	Performs the harvesting action for any plant based machinery.&lt;br /&gt;
:  &amp;lt;code&amp;gt;s d0 Harvest 1 # Performs 1 harvest action on device d0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;Horizontal&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Horizontal&lt;br /&gt;
&amp;lt;div id=&amp;quot;HorizontalRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;HorizontalRatio&lt;br /&gt;
&amp;lt;div id=&amp;quot;Idle&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Idle&lt;br /&gt;
&amp;lt;div id=&amp;quot;ImportCount&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ImportCount&lt;br /&gt;
&amp;lt;div id=&amp;quot;Lock&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Lock&lt;br /&gt;
&amp;lt;div id=&amp;quot;Maximum&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Maximum&lt;br /&gt;
&amp;lt;div id=&amp;quot;Mode&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Mode&lt;br /&gt;
&amp;lt;div id=&amp;quot;On&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;On&lt;br /&gt;
&amp;lt;div id=&amp;quot;Open&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Open&lt;br /&gt;
&amp;lt;div id=&amp;quot;Output&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Output&lt;br /&gt;
&amp;lt;div id=&amp;quot;Plant&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Plant&lt;br /&gt;
:    Performs the planting operation for any plant based machinery.&lt;br /&gt;
:  &amp;lt;code&amp;gt;s d0 Plant 1 # Plants one crop in device d0&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;PositionX&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PositionX&lt;br /&gt;
&amp;lt;div id=&amp;quot;PositionY&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PositionY&lt;br /&gt;
&amp;lt;div id=&amp;quot;PositionZ&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PositionZ&lt;br /&gt;
&amp;lt;div id=&amp;quot;Power&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Power&lt;br /&gt;
&amp;lt;div id=&amp;quot;PowerActual&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PowerActual&lt;br /&gt;
&amp;lt;div id=&amp;quot;PowerPotential&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PowerPotential&lt;br /&gt;
&amp;lt;div id=&amp;quot;PowerRequired&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PowerRequired&lt;br /&gt;
&amp;lt;div id=&amp;quot;Pressure&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Pressure&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureExternal&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureExternal&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureInteral&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureInteral&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureSetting&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureSetting&lt;br /&gt;
&amp;lt;div id=&amp;quot;Quantity&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Quantity&lt;br /&gt;
:	Total quantity in the device.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Ratio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Ratio&lt;br /&gt;
:	Context specific value depending on device, 0 to 1 based ratio.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioCarbonDioxide&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioCarbonDioxide&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioNitrogen&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioNitrogen&lt;br /&gt;
:	The ratio of nitrogen in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioOxygen&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioOxygen&lt;br /&gt;
:	The ratio of oxygen in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioPollutant&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioPollutant&lt;br /&gt;
:	The ratio of pollutant in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioVolatiles&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioVolatiles&lt;br /&gt;
:	The ratio of volatiles in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;RatioWater&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RatioWater&lt;br /&gt;
:	The ratio of water in device atmosphere.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Reagents&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Reagents&lt;br /&gt;
&amp;lt;div id=&amp;quot;RecipeHash&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RecipeHash&lt;br /&gt;
&amp;lt;div id=&amp;quot;RequestHash&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RequestHash&lt;br /&gt;
&amp;lt;div id=&amp;quot;RequiredPower&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;RequiredPower&lt;br /&gt;
&amp;lt;div id=&amp;quot;Setting&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Setting&lt;br /&gt;
&amp;lt;div id=&amp;quot;SolarAngle&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;SolarAngle&lt;br /&gt;
:    Solar angle of the device.&lt;br /&gt;
:  &amp;lt;code&amp;gt;l r0 d0 SolarAngle # Sets r0 to the solar angle of d0.&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;Temperature&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Temperature&lt;br /&gt;
&amp;lt;div id=&amp;quot;TemperatureSettings&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;TemperatureSettings&lt;br /&gt;
&amp;lt;div id=&amp;quot;TotalMoles&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;TotalMoles&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityMagnitude&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityMagnitude&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityRelativeX&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityRelativeX&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityRelativeY&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityRelativeY&lt;br /&gt;
&amp;lt;div id=&amp;quot;VelocityRelativeZ&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VelocityRelativeZ&lt;br /&gt;
&amp;lt;div id=&amp;quot;Vertical&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Vertical&lt;br /&gt;
:	Vertical setting of the device.&lt;br /&gt;
&amp;lt;div id=&amp;quot;VerticalRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;VerticalRatio&lt;br /&gt;
:	Ratio of vertical setting for device.&lt;br /&gt;
&amp;lt;div id=&amp;quot;Volume&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Volume&lt;br /&gt;
:	Returns the device atmosphere volume&lt;br /&gt;
&lt;br /&gt;
==Slot Variables==&lt;br /&gt;
In general (always?) slots are assigned as follows.&lt;br /&gt;
:Slot 0: Import&lt;br /&gt;
:Slot 1: Export&lt;br /&gt;
:Slot 2: Inside Machine&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Occupied&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Occupied&lt;br /&gt;
:&amp;lt;code&amp;gt;ls r0 d0 2 Occupied #Stores 1 in r0 if d0 has more seeds&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;ls vOccupied dThisVictim 2 Occupied #stores 1 in vOccupied if dThisVictim has more seeds&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;OccupantHash&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;OccupantHash&lt;br /&gt;
&amp;lt;div id=&amp;quot;Quantity&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Quantity&lt;br /&gt;
&amp;lt;div id=&amp;quot;Damage&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Damage&lt;br /&gt;
&amp;lt;div id=&amp;quot;Efficiency&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Efficiency&lt;br /&gt;
&amp;lt;div id=&amp;quot;Health&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Health&lt;br /&gt;
&amp;lt;div id=&amp;quot;Growth&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Growth&lt;br /&gt;
:&amp;lt;code&amp;gt;ls r0 d0 0 Growth # Store the numerical growth stage of d0 in r0&amp;lt;/code&amp;gt; &lt;br /&gt;
&amp;lt;div id=&amp;quot;Pressure&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Pressure&lt;br /&gt;
&amp;lt;div id=&amp;quot;Temperature&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Temperature&lt;br /&gt;
&amp;lt;div id=&amp;quot;Charge&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Charge&lt;br /&gt;
&amp;lt;div id=&amp;quot;ChargeRatio&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;ChargeRatio&lt;br /&gt;
&amp;lt;div id=&amp;quot;Class&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Class&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureWaste&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureWaste&lt;br /&gt;
&amp;lt;div id=&amp;quot;PressureAir&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;PressureAir&lt;br /&gt;
&amp;lt;div id=&amp;quot;MaxQuantity&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;MaxQuantity&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Mature&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
;Mature&lt;br /&gt;
:&amp;lt;code&amp;gt;ls r0 d0 0 Mature # Store 1 in r0 if d0 has a mature crop&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;ls vMature dThisVictim 0 Mature # Store 1 in vMature if dThisVictim has a mature crop&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Examples=&lt;br /&gt;
Previous examples were obsolete due to game changes, or confusing, they have been moved into the Discussions section&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Harvie automation===&lt;br /&gt;
This script uses the batch instruction &amp;lt;code&amp;gt;sb ...&amp;lt;/code&amp;gt; to control all Harvies on the network. But only one Harvie and one Tray will be the &#039;&#039;master&#039;&#039; and have their values read, the rest of the Harvies will just repeat whatever the &#039;&#039;master&#039;&#039; unit does. Some problems with this is that different types of crops mature at different speeds, and if manually planting and giving the &#039;&#039;master&#039;&#039; unit the first seed the harvesting action will be performed too early on the other plants.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot; data-expandtext=&amp;quot;{{int:Expand, Automated Harvie Script}}&amp;quot; data-collapsetext=&amp;quot;{{int:Collapse, Automated Harvie Script}}&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
alias dHarvie d0&lt;br /&gt;
alias dTray d1&lt;br /&gt;
&lt;br /&gt;
alias rHarvieHash r8&lt;br /&gt;
alias rTrayHash r9&lt;br /&gt;
l rHarvieHash dHarvie PrefabHash&lt;br /&gt;
l rTrayHash dTray PrefabHash&lt;br /&gt;
&lt;br /&gt;
main:&lt;br /&gt;
yield&lt;br /&gt;
 #read plant data from the Tray&lt;br /&gt;
ls r0 dTray 0 Mature&lt;br /&gt;
 #harvestable plants return 1, young plants return 0&lt;br /&gt;
 #nothing planted returns -1&lt;br /&gt;
beq r0 -1 plantCrop&lt;br /&gt;
beq r0 1 harvestCrop&lt;br /&gt;
ls r0 dTray 0 Seeding&lt;br /&gt;
 #seeds available returns 1, all seeds picked returns 0&lt;br /&gt;
 #plants too young or old for seeds returns -1&lt;br /&gt;
beq r0 1 harvestCrop&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
plantCrop:&lt;br /&gt;
 #stop the planting if no seeds available&lt;br /&gt;
 #otherwise it will plant nothing repeatedly&lt;br /&gt;
ls r0 dHarvie 0 Occupied&lt;br /&gt;
beq r0 0 main&lt;br /&gt;
sb rHarvieHash Plant 1&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
harvestCrop:&lt;br /&gt;
sb rHarvieHash Harvest 1&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
### End Script ###&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
===Solar Panel 2-axis tracking===&lt;br /&gt;
This script was copied from the [[Solar_Logic_Circuits_Guide]] (code provided by bti, comments and readability changes by Fudd79)&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot; data-expandtext=&amp;quot;{{int:Expand, Solar Panel 2-axis tracking}}&amp;quot; data-collapsetext=&amp;quot;{{int:Collapse, Solar Panel 2-axis tracking}}&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# This code assumes the following:&lt;br /&gt;
# Daylight Sensor data-port points north&lt;br /&gt;
# Solar Panel data-port points east&lt;br /&gt;
&lt;br /&gt;
alias sensor d0&lt;br /&gt;
alias v_angle r0&lt;br /&gt;
alias h_angle r1&lt;br /&gt;
alias sun_up r2&lt;br /&gt;
&lt;br /&gt;
define solar_panel_hash -539224550&lt;br /&gt;
define heavy_solar_panel_hash -1545574413&lt;br /&gt;
&lt;br /&gt;
start:&lt;br /&gt;
# Check to see if sun is up&lt;br /&gt;
l sun_up sensor Activate&lt;br /&gt;
# Go to reset if it&#039;s not&lt;br /&gt;
beqz sun_up reset&lt;br /&gt;
&lt;br /&gt;
# Calculate vertical angle&lt;br /&gt;
l v_angle sensor Vertical&lt;br /&gt;
div v_angle v_angle 1.5&lt;br /&gt;
sub v_angle 50 v_angle&lt;br /&gt;
&lt;br /&gt;
# Write vertical angle to all solar panels&lt;br /&gt;
sb solar_panel_hash Vertical v_angle&lt;br /&gt;
sb heavy_solar_panel_hash Vertical v_angle&lt;br /&gt;
&lt;br /&gt;
# Obtain horizontal angle&lt;br /&gt;
l h_angle sensor Horizontal&lt;br /&gt;
&lt;br /&gt;
# Write vertical angle to all solar panels&lt;br /&gt;
sb solar_panel_hash Horizontal h_angle&lt;br /&gt;
sb heavy_solar_panel_hash Horizontal h_angle&lt;br /&gt;
&lt;br /&gt;
# Go to start again&lt;br /&gt;
yield&lt;br /&gt;
j start&lt;br /&gt;
&lt;br /&gt;
reset:&lt;br /&gt;
# Park solar panels vertically facing sunrise&lt;br /&gt;
sb solar_panel_hash Vertical 0&lt;br /&gt;
sb heavy_solar_panel_hash Vertical 0&lt;br /&gt;
# Park solar panels horizontally facing sunrise&lt;br /&gt;
sb solar_panel_hash Horizontal -90&lt;br /&gt;
sb heavy_solar_panel_hash Horizontal -90&lt;br /&gt;
# Wait 10 seconds&lt;br /&gt;
sleep 10&lt;br /&gt;
# Go to start again&lt;br /&gt;
j start&lt;br /&gt;
&lt;br /&gt;
### End Script ###&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Links=&lt;br /&gt;
----&lt;br /&gt;
* [https://stationeering.com/tools/ic] Stationeering.com offers a programmable circuits simulator so you can develop your code without repeatedly dying in game!&lt;br /&gt;
* [https://hastebin.com/uwuhidozun.md]&lt;br /&gt;
* [http://www.easy68k.com/]&lt;br /&gt;
* [https://pastebin.com/6Uw1KSRN] syntax highlighting for IC10 MIPS for KDE kwrite/kate text editor&lt;br /&gt;
* [https://drive.google.com/file/d/1yEsJ-u94OkuMQ8K6fY7Ja1HNpLcAdjo_/view] syntax highlighting for IC10 MIPS for Notepad++&lt;br /&gt;
* [https://pastebin.com/3kmGy0NN] syntax highlighting for IC10 MIPS for Notepad++ (updated: 05/05/2021)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=Index=&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|+Functions &lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
*[[#abs|abs]]&lt;br /&gt;
*[[#add|add]]&lt;br /&gt;
*[[#alias|alias]]&lt;br /&gt;
*[[#and|and]]&lt;br /&gt;
*[[#beq|beq]]&lt;br /&gt;
*[[#bgez|bgez]]&lt;br /&gt;
*[[#bgtz|bgtz]]&lt;br /&gt;
*[[#blez|blez]]&lt;br /&gt;
*[[#bltz|bltz]]&lt;br /&gt;
*[[#bne|bne]]&lt;br /&gt;
*[[#breq|breq]]&lt;br /&gt;
*[[#brgez|brgez]]&lt;br /&gt;
*[[#brgtz|brgtz]]&lt;br /&gt;
*[[#brlez|brlez]]&lt;br /&gt;
*[[#brltz|brltz]]&lt;br /&gt;
*[[#brne|brne]]&lt;br /&gt;
*[[#ceil|cell]]&lt;br /&gt;
*[[#div|div]]&lt;br /&gt;
*[[#exp|exp]]&lt;br /&gt;
*[[#floor|floor]]&lt;br /&gt;
*[[#j|j]]&lt;br /&gt;
*[[#jr|jr]]&lt;br /&gt;
*[[#l|l]]&lt;br /&gt;
*[[#log|log]]&lt;br /&gt;
*[[#ls|ls]]&lt;br /&gt;
*[[#max|max]]&lt;br /&gt;
*[[#min|min]]&lt;br /&gt;
*[[#mod|mod]]&lt;br /&gt;
*[[#move|move]]&lt;br /&gt;
*[[#mul|mul]]&lt;br /&gt;
*[[#nor|nor]]&lt;br /&gt;
*[[#or|or]]&lt;br /&gt;
*[[#rand|rand]]&lt;br /&gt;
*[[#round|round]]&lt;br /&gt;
*[[#s|s]]&lt;br /&gt;
*[[#slt|slt]]&lt;br /&gt;
*[[#sqrt|sqrt]]&lt;br /&gt;
*[[#sub|sub]]&lt;br /&gt;
*[[#trunc|trunc]]&lt;br /&gt;
*[[#xor|xor]]xor&lt;br /&gt;
*[[#yield|yield]]&lt;br /&gt;
*[[##|#]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|+Device Variables &lt;br /&gt;
&amp;lt;div  class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
*[[#Activate|Activate]]&lt;br /&gt;
*[[#AirRelease|AirRelease]]&lt;br /&gt;
*[[#Charge|Charge]]&lt;br /&gt;
*[[#CLearMemory|CLearMemory]]&lt;br /&gt;
*[[#Color|Color]]&lt;br /&gt;
*[[#CompletionRatio|CompletionRatio]]&lt;br /&gt;
*[[#ElevatorLevel|ElevatorLevel]]&lt;br /&gt;
*[[#ElevatorSpeed|ElevatorSpeed]]&lt;br /&gt;
*[[#Error|Error]]&lt;br /&gt;
*[[#ExportCount|ExportCount]]&lt;br /&gt;
*[[#Filtration|Filtration]]&lt;br /&gt;
*[[#Harvest|Harvest]]&lt;br /&gt;
*[[#Horizontal|Horizontal]]&lt;br /&gt;
*[[#HorizontalRatio|HorizontalRatio]]&lt;br /&gt;
*[[#Idle|Idle]]&lt;br /&gt;
*[[#ImportCount|ImportCount]]&lt;br /&gt;
*[[#Lock|Lock]]&lt;br /&gt;
*[[#Maximum|Maximum]]&lt;br /&gt;
*[[#Mode|Mode]]&lt;br /&gt;
*[[#On|On]]&lt;br /&gt;
*[[#Open|Open]]&lt;br /&gt;
*[[#Output|Output]]&lt;br /&gt;
*[[#Plant|Plant]]&lt;br /&gt;
*[[#PositionX|PositionX]]&lt;br /&gt;
*[[#PositionY|PositionY]]&lt;br /&gt;
*[[#PositionZ|PositionZ]]&lt;br /&gt;
*[[#Power|Power]]&lt;br /&gt;
*[[#PowerActual|PowerActual]]&lt;br /&gt;
*[[#PowerPotential|PowerPotential]]&lt;br /&gt;
*[[#PowerRequired|PowerRequired]]&lt;br /&gt;
*[[#Pressure|Pressure]]&lt;br /&gt;
*[[#PressureExternal|PressureExternal]]&lt;br /&gt;
*[[#PressureInteral|PressureInteral]]&lt;br /&gt;
*[[#PressureSetting|PressureSetting]]&lt;br /&gt;
*[[#Quantity|Quantity]]&lt;br /&gt;
*[[#Ratio|Ratio]]&lt;br /&gt;
*[[#RatioCarbonDioxide|RatioCarbonDioxide]]&lt;br /&gt;
*[[#RatioNitrogen|RatioNitrogen]]&lt;br /&gt;
*[[#RatioOxygen|RatioOxygen]]&lt;br /&gt;
*[[#RatioPollutant|RatioPollutant]]&lt;br /&gt;
*[[#RatioVolatiles|RatioVolatiles]]&lt;br /&gt;
*[[#RatioWater|RatioWater]]&lt;br /&gt;
*[[#Reagents|Reagents]]&lt;br /&gt;
*[[#RecipeHash|RecipeHash]]&lt;br /&gt;
*[[#RequestHash|RequestHash]]&lt;br /&gt;
*[[#RequiredPower|RequiredPower]]&lt;br /&gt;
*[[#Setting|Setting]]&lt;br /&gt;
*[[#SolarAngle|SolarAngle]]&lt;br /&gt;
*[[#Temperature|Temperature]]&lt;br /&gt;
*[[#TemperatureSettings|TemperatureSettings]]&lt;br /&gt;
*[[#TotalMoles|TotalMoles]]&lt;br /&gt;
*[[#VelocityMagnitude|VelocityMagnitude]]&lt;br /&gt;
*[[#VelocityRelativeX|VelocityRelativeX]]&lt;br /&gt;
*[[#VelocityRelativeY|VelocityRelativeY]]&lt;br /&gt;
*[[#VelocityRelativeZ|VelocityRelativeZ]]&lt;br /&gt;
*[[#Vertical|Vertical]]&lt;br /&gt;
*[[#VerticalRatio|VerticalRatio]]&lt;br /&gt;
*[[#Volume|Volume]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|+Slot Variables &lt;br /&gt;
&amp;lt;div  class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
*[[#Occupied|Occupied]]&lt;br /&gt;
*[[#OccupantHash|OccupantHash]]&lt;br /&gt;
*[[#Quantity|Quantity]]&lt;br /&gt;
*[[#Damage|Damage]]&lt;br /&gt;
*[[#Efficiency|Efficiency]]&lt;br /&gt;
*[[#Health|Health]]&lt;br /&gt;
*[[#Growth|Growth]]&lt;br /&gt;
*[[#Pressure|Pressure]]&lt;br /&gt;
*[[#Temperature|Temperature]]&lt;br /&gt;
*[[#Charge|Charge]]&lt;br /&gt;
*[[#ChargeRatio|ChargeRatio]]&lt;br /&gt;
*[[#Class|Class]]&lt;br /&gt;
*[[#PressureWaste|PressureWaste]]&lt;br /&gt;
*[[#PressureAir|PressureAir]]&lt;br /&gt;
*[[#MaxQuantity|MaxQuantity]]&lt;br /&gt;
*[[#Mature|Mature]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Wark</name></author>
	</entry>
</feed>