<?xml version="1.0" encoding="UTF-8"?>
<!-- Created by SBML API 2.0(a17.0) -->
<sbml level="2" version="1" xmlns="http://www.sbml.org/sbml/level2" xmlns:celldesigner="http://www.sbml.org/2001/ns/celldesigner">
<model id="GardnerDolnikCollins">
<notes>
<body xmlns="http://www.w3.org/1999/xhtml">
			<h1>Minimal Mitotic Oscillator with Inhibitor</h1>

			<table border="0" cellpadding="2" cellspacing="0">
				<thead>
					<tr>
						<th align="left" bgcolor="#eeeeee" valign="middle">Citation</th>
					</tr>
				</thead>
				<tbody>
					<tr>
						<td>Gardner TS, Dolnik M, Collins JJ (1998)
							 A theory for controlling cell cycle dynamics using a reversibly binding inhibitor. PNAS 95:
							 14190-14195.
						<a href="http://www.pnas.org/cgi/content/abstract/95/        24/14190">
							http://www.pnas.org/cgi/content/abstract/95/24/14190
						</a>
</td>
					</tr>
				</tbody>
			</table>
			
			<table border="0" cellpadding="2" cellspacing="0">
				<thead>
					<tr>
						<th align="left" bgcolor="#eeeeee" valign="middle">Description</th>
					</tr>
				</thead>
				<tbody>
					<tr>
						<td>
							This is a modification of the widely cited (
							<a href="http://www.pnas.org/cgi/content/abstract/88/20/9107">
							Goldbeter 1991</a>) minimal (3-variable)
							 model for a mitotic oscillator. The three variables represent Cyclin (
							C), inactive cdc-2 Kinase (M)
							 and an active cdc-2 Kinase (X)
							.Two additional variables Y,
							 Z control the dynamics of the inhibitor.</td>
					</tr>
				</tbody>
			</table>
			
			<table border="0" cellpadding="2" cellspacing="0">
				<thead>
					<tr>
						<th align="left" bgcolor="#eeeeee" valign="middle">Rate constant      </th>
						<th align="left" bgcolor="#eeeeee" valign="middle">Reaction</th>
					</tr>
				</thead>
				<tbody>
					<tr>
						<td>a1 = 0.5</td>
						<td>C + Y -&gt; Z</td>
					</tr>
					<tr>
						<td>a2 = 0.5</td>
						<td>Z -&gt; C + Y</td>
					</tr>
					<tr>
						<td>d1 = 0.05</td>
						<td>Y -&gt; EmptySet</td>
					</tr>
					<tr>
						<td>K1 = 0.005 (hill khalf)</td>
						<td>Comp[M] -&gt; M</td>
					</tr>
					<tr>
						<td>K2 = 0.005 (hill khalf)</td>
						<td>M -&gt; EmptySet</td>
					</tr>
					<tr>
						<td>K3 = 0.005 (hill khalf)</td>
						<td>Comp[X] -&gt; X</td>
					</tr>
					<tr>
						<td>K4 = 0.005 (hill khalf)</td>
						<td>X -&gt; EmptySet</td>
					</tr>
					<tr>
						<td>Kc = 0.3 (hill vmax)</td>
						<td>Comp[M] -&gt; M</td>
					</tr>
					<tr>
						<td>kd = 0.01</td>
						<td>C -&gt; EmptySet</td>
					</tr>
					<tr>
						<td>kd = 0.01 (hill khalf)</td>
						<td>C + X -&gt; X + EmptySet</td>
					</tr>
					<tr>
						<td>V2 = 1.5 (hill vmax)</td>
						<td>M -&gt; EmptySet</td>
					</tr>
					<tr>
						<td>V4 = 0.5 (hill vmax)</td>
						<td>X -&gt; EmptySet</td>
					</tr>
					<tr>
						<td>vd = 0.25 (hill vmax)</td>
						<td>C + X -&gt; X + EmptySet</td>
					</tr>
					<tr>
						<td>vi = 0.025</td>
						<td>EmptySet -&gt; C</td>
					</tr>
					<tr>
						<td>VM1 = 3 (hill vmax)</td>
						<td>Comp[M] -&gt; M</td>
					</tr>
					<tr>
						<td>VM3 = 1 (hill vmax)</td>
						<td>Comp[X] -&gt; X</td>
					</tr>
					<tr>
						<td>VS = 0</td>
						<td>EmptySet -&gt; Y</td>
					</tr>
					<tr>
						<td>alpha = 0.1</td>
						<td>Z -&gt; C</td>
					</tr>
					<tr>
						<td>alpha = 0.1</td>
						<td>Z -&gt; Y</td>
					</tr>
				</tbody>
			</table>

			<table border="0" cellpadding="2" cellspacing="0">
				<thead>
					<tr>
						<th align="left" bgcolor="#eeeeee" valign="middle">Variable</th>
						<th align="left" bgcolor="#eeeeee" valign="middle">IC  </th>
						<th align="left" bgcolor="#eeeeee" valign="middle">ODE</th>
					</tr>
				</thead>
				<tbody>
					<tr>
						<td>C</td>
						<td>0</td>
						<td>C'[t] == vi - kd*C[t] - (vd*C[t]*X[t])/(
							kd + C[t]) - a1*C[t]*Y[t] + a2*Z[t] + alpha*
							Z[t]</td>
					</tr>
					<tr>
						<td>M</td>
						<td>0</td>
						<td>M'[t] == (VM1*C[t]*(1 - M[t]))/((Kc + C[t])*(
							1 + K1 - M[t])) - (V2*M[t])/(K2 + M[t])</td>
					</tr>
					<tr>
						<td>X</td>
						<td>0</td>
						<td>X'[t] == (VM3*M[t]*(1 - X[t]))/(1 + K3 -
							 X[t]) - (V4*X[t])/(K4 + X[t])</td>
					</tr>
					<tr>
						<td>Y</td>
						<td>1</td>
						<td>Y'[t] == VS - d1*Y[t] - a1*C[t]*Y[t] +
							 a2*Z[t] + alpha*Z[t]</td>
					</tr>
					<tr>
						<td>Z</td>
						<td>1</td>
						<td>Z'[t] == a1*C[t]*Y[t] - a2*Z[t] - 2*alpha*Z[t]</td>
					</tr>
				</tbody>
			</table>
			<p>Generated by Cellerator Version 1.0 update 3.0217 using Mathematica 4.2 for 
				Mac OS X (June 4, 2002), February 19, 2003 10:40:59, using (PowerMac,PowerPC,
				Mac OS X,MacOSX,Darwin)</p>
			<p>author=B.E.Shapiro</p>

		</body>
</notes>
<annotation>
<celldesigner:modelVersion>2.3</celldesigner:modelVersion>
<celldesigner:modelDisplay sizeX="640" sizeY="480"/>
<celldesigner:listOfCompartmentAliases>
<celldesigner:compartmentAlias compartment="cytoplasm" id="ca0">
<celldesigner:class>SQUARE</celldesigner:class>
<celldesigner:bounds h="433.0" w="583.0" x="30.0" y="23.0"/>
<celldesigner:doubleLine innerWidth="1.0" outerWidth="2.0" thickness="12.0"/>
<celldesigner:paint color="ff99ccff" scheme="Color"/>
</celldesigner:compartmentAlias>
</celldesigner:listOfCompartmentAliases>
<celldesigner:listOfSpeciesAliases>
<celldesigner:speciesAlias compartmentAlias="ca0" id="a0" species="EmptySet">
<celldesigner:activity>inactive</celldesigner:activity>
<celldesigner:bounds h="24.0" w="80.0" x="277.63498131253095" y="209.5794057420352"/>
<celldesigner:singleLine width="0.0"/>
<celldesigner:paint color="7fcccccc" scheme="Color"/>
</celldesigner:speciesAlias>
<celldesigner:speciesAlias compartmentAlias="ca0" id="a1" species="C">
<celldesigner:activity>inactive</celldesigner:activity>
<celldesigner:bounds h="24.0" w="80.0" x="162.17767340195357" y="322.80416493859195"/>
<celldesigner:singleLine width="0.0"/>
<celldesigner:paint color="7fcccccc" scheme="Color"/>
</celldesigner:speciesAlias>
<celldesigner:speciesAlias compartmentAlias="ca0" id="a2" species="M">
<celldesigner:activity>inactive</celldesigner:activity>
<celldesigner:bounds h="24.0" w="80.0" x="445.8450085841998" y="97.68102050937196"/>
<celldesigner:singleLine width="0.0"/>
<celldesigner:paint color="7fcccccc" scheme="Color"/>
</celldesigner:speciesAlias>
<celldesigner:speciesAlias compartmentAlias="ca0" id="a3" species="X">
<celldesigner:activity>inactive</celldesigner:activity>
<celldesigner:bounds h="24.0" w="80.0" x="462.36463488751053" y="310.9597472236664"/>
<celldesigner:singleLine width="0.0"/>
<celldesigner:paint color="7fcccccc" scheme="Color"/>
</celldesigner:speciesAlias>
<celldesigner:speciesAlias compartmentAlias="ca0" id="a4" species="Y">
<celldesigner:activity>inactive</celldesigner:activity>
<celldesigner:bounds h="24.0" w="80.0" x="184.20548913640914" y="82.98038819284275"/>
<celldesigner:singleLine width="0.0"/>
<celldesigner:paint color="7fcccccc" scheme="Color"/>
</celldesigner:speciesAlias>
<celldesigner:speciesAlias compartmentAlias="ca0" id="a5" species="Z">
<celldesigner:activity>inactive</celldesigner:activity>
<celldesigner:bounds h="24.0" w="80.0" x="61.54753642709875" y="195.55325515873952"/>
<celldesigner:singleLine width="0.0"/>
<celldesigner:paint color="7fcccccc" scheme="Color"/>
</celldesigner:speciesAlias>
</celldesigner:listOfSpeciesAliases>
<celldesigner:listOfGroups/>
<celldesigner:listOfProteins/>
<celldesigner:listOfBlockDiagrams/>
</annotation>
<listOfCompartments>
<compartment id="default"/>
<compartment id="cytoplasm" name="cytoplasm" outside="default" size="1.0">
<annotation>
<celldesigner:name>cytoplasm</celldesigner:name>
</annotation>
</compartment>
</listOfCompartments>
<listOfSpecies>
<species boundaryCondition="true" compartment="cytoplasm" id="EmptySet" initialAmount="0.0" name="EmptySet">
<annotation>
<celldesigner:positionToCompartment>inside</celldesigner:positionToCompartment>
<celldesigner:speciesIdentity>
<celldesigner:class>UNKNOWN</celldesigner:class>
<celldesigner:name>EmptySet</celldesigner:name>
</celldesigner:speciesIdentity>
</annotation>
</species>
<species compartment="cytoplasm" id="C" initialAmount="0.0" name="C">
<annotation>
<celldesigner:positionToCompartment>inside</celldesigner:positionToCompartment>
<celldesigner:speciesIdentity>
<celldesigner:class>UNKNOWN</celldesigner:class>
<celldesigner:name>C</celldesigner:name>
</celldesigner:speciesIdentity>
</annotation>
</species>
<species compartment="cytoplasm" id="M" initialAmount="0.0" name="M">
<annotation>
<celldesigner:positionToCompartment>inside</celldesigner:positionToCompartment>
<celldesigner:speciesIdentity>
<celldesigner:class>UNKNOWN</celldesigner:class>
<celldesigner:name>M</celldesigner:name>
</celldesigner:speciesIdentity>
</annotation>
</species>
<species compartment="cytoplasm" id="X" initialAmount="0.0" name="X">
<annotation>
<celldesigner:positionToCompartment>inside</celldesigner:positionToCompartment>
<celldesigner:speciesIdentity>
<celldesigner:class>UNKNOWN</celldesigner:class>
<celldesigner:name>X</celldesigner:name>
</celldesigner:speciesIdentity>
</annotation>
</species>
<species compartment="cytoplasm" id="Y" initialAmount="1.0" name="Y">
<annotation>
<celldesigner:positionToCompartment>inside</celldesigner:positionToCompartment>
<celldesigner:speciesIdentity>
<celldesigner:class>UNKNOWN</celldesigner:class>
<celldesigner:name>Y</celldesigner:name>
</celldesigner:speciesIdentity>
</annotation>
</species>
<species compartment="cytoplasm" id="Z" initialAmount="1.0" name="Z">
<annotation>
<celldesigner:positionToCompartment>inside</celldesigner:positionToCompartment>
<celldesigner:speciesIdentity>
<celldesigner:class>UNKNOWN</celldesigner:class>
<celldesigner:name>Z</celldesigner:name>
</celldesigner:speciesIdentity>
</annotation>
</species>
</listOfSpecies>
<listOfReactions>
<reaction id="Reaction1" name="Reaction1" reversible="false">
<annotation>
<celldesigner:name>Reaction1</celldesigner:name>
<celldesigner:reactionType>STATE_TRANSITION</celldesigner:reactionType>
<celldesigner:baseReactants>EmptySet</celldesigner:baseReactants>
<celldesigner:baseProducts>C</celldesigner:baseProducts>
<celldesigner:editPoints>0.3333333333333336,0.0 0.6666666666666671,0.0</celldesigner:editPoints>
</annotation>
<listOfReactants>
<speciesReference species="EmptySet">
<annotation>
<celldesigner:alias>a0</celldesigner:alias>
</annotation>
</speciesReference>
</listOfReactants>
<listOfProducts>
<speciesReference species="C">
<annotation>
<celldesigner:alias>a1</celldesigner:alias>
</annotation>
</speciesReference>
</listOfProducts>
<kineticLaw>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<ci>vi</ci>
</math>
<listOfParameters>
<parameter id="vi" value="0.025"/>
</listOfParameters>
</kineticLaw>
</reaction>
<reaction id="Reaction2" name="Reaction2" reversible="false">
<annotation>
<celldesigner:name>Reaction2</celldesigner:name>
<celldesigner:reactionType>STATE_TRANSITION</celldesigner:reactionType>
<celldesigner:baseReactants>C</celldesigner:baseReactants>
<celldesigner:baseProducts>EmptySet</celldesigner:baseProducts>
<celldesigner:offset x="26.0" y="7.0"/>
<celldesigner:editPoints>0.33333333333333304,-4.440892098500626E-16 0.6666666666666667,4.440892098500626E-16</celldesigner:editPoints>
</annotation>
<listOfReactants>
<speciesReference species="C">
<annotation>
<celldesigner:alias>a1</celldesigner:alias>
</annotation>
</speciesReference>
</listOfReactants>
<listOfProducts>
<speciesReference species="EmptySet">
<annotation>
<celldesigner:alias>a0</celldesigner:alias>
</annotation>
</speciesReference>
</listOfProducts>
<kineticLaw>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<times/>
<ci>C</ci>
<ci>kd</ci>
</apply>
</math>
<listOfParameters>
<parameter id="kd" value="0.01"/>
</listOfParameters>
</kineticLaw>
</reaction>
<reaction id="Reaction3" name="Reaction3" reversible="false">
<annotation>
<celldesigner:name>Reaction3</celldesigner:name>
<celldesigner:reactionType>STATE_TRANSITION</celldesigner:reactionType>
<celldesigner:baseReactants>C</celldesigner:baseReactants>
<celldesigner:baseProducts>EmptySet</celldesigner:baseProducts>
<celldesigner:offset x="9.0" y="8.0"/>
<celldesigner:editPoints>0.33333333333333304,-4.440892098500626E-16 0.6831589856550737,-0.01009326260515131</celldesigner:editPoints>
</annotation>
<listOfReactants>
<speciesReference species="C">
<annotation>
<celldesigner:alias>a1</celldesigner:alias>
</annotation>
</speciesReference>
</listOfReactants>
<listOfProducts>
<speciesReference species="EmptySet">
<annotation>
<celldesigner:alias>a0</celldesigner:alias>
</annotation>
</speciesReference>
</listOfProducts>
<kineticLaw>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<divide/>
<apply>
<times/>
<ci>C</ci>
<ci>vd</ci>
<ci>X</ci>
</apply>
<apply>
<plus/>
<ci>C</ci>
<ci>kd</ci>
</apply>
</apply>
</math>
<listOfParameters>
<parameter id="kd" value="0.01"/>
<parameter id="vd" value="0.25"/>
</listOfParameters>
</kineticLaw>
</reaction>
<reaction id="Reaction4" name="Reaction4" reversible="false">
<annotation>
<celldesigner:name>Reaction4</celldesigner:name>
<celldesigner:reactionType>STATE_TRANSITION</celldesigner:reactionType>
<celldesigner:baseReactants>EmptySet</celldesigner:baseReactants>
<celldesigner:baseProducts>Y</celldesigner:baseProducts>
<celldesigner:offset x="-6.0" y="1.0"/>
<celldesigner:editPoints>0.33333333333333304,0.0 0.6666666666666665,4.440892098500626E-16</celldesigner:editPoints>
</annotation>
<listOfReactants>
<speciesReference species="EmptySet">
<annotation>
<celldesigner:alias>a0</celldesigner:alias>
</annotation>
</speciesReference>
</listOfReactants>
<listOfProducts>
<speciesReference species="Y">
<annotation>
<celldesigner:alias>a4</celldesigner:alias>
</annotation>
</speciesReference>
</listOfProducts>
<kineticLaw>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<ci>VS</ci>
</math>
<listOfParameters>
<parameter id="VS" value="0.0"/>
</listOfParameters>
</kineticLaw>
</reaction>
<reaction id="Reaction5" name="Reaction5" reversible="false">
<annotation>
<celldesigner:name>Reaction5</celldesigner:name>
<celldesigner:reactionType>STATE_TRANSITION</celldesigner:reactionType>
<celldesigner:baseReactants>Y</celldesigner:baseReactants>
<celldesigner:baseProducts>EmptySet</celldesigner:baseProducts>
<celldesigner:offset x="10.0" y="0.0"/>
<celldesigner:editPoints>0.33333333333333326,2.220446049250313E-16 0.6666666666666667,4.440892098500626E-16</celldesigner:editPoints>
</annotation>
<listOfReactants>
<speciesReference species="Y">
<annotation>
<celldesigner:alias>a4</celldesigner:alias>
</annotation>
</speciesReference>
</listOfReactants>
<listOfProducts>
<speciesReference species="EmptySet">
<annotation>
<celldesigner:alias>a0</celldesigner:alias>
</annotation>
</speciesReference>
</listOfProducts>
<kineticLaw>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<times/>
<ci>d1</ci>
<ci>Y</ci>
</apply>
</math>
<listOfParameters>
<parameter id="d1" value="0.05"/>
</listOfParameters>
</kineticLaw>
</reaction>
<reaction id="Reaction6" name="Reaction6" reversible="false">
<annotation>
<celldesigner:name>Reaction6</celldesigner:name>
<celldesigner:reactionType>STATE_TRANSITION</celldesigner:reactionType>
<celldesigner:baseReactants>C</celldesigner:baseReactants>
<celldesigner:baseProducts>Z</celldesigner:baseProducts>
<celldesigner:listOfReactantLinks>
<celldesigner:reactantLink alias="a4" reactant="Y" targetLineIndex="-1,1"/>
</celldesigner:listOfReactantLinks>
<celldesigner:editPoints>0.33333333333333304,0.0 0.6666666666666664,1.1102230246251565E-16</celldesigner:editPoints>
</annotation>
<listOfReactants>
<speciesReference species="C">
<annotation>
<celldesigner:alias>a1</celldesigner:alias>
</annotation>
</speciesReference>
<speciesReference species="Y">
<annotation>
<celldesigner:alias>a4</celldesigner:alias>
</annotation>
</speciesReference>
</listOfReactants>
<listOfProducts>
<speciesReference species="Z">
<annotation>
<celldesigner:alias>a5</celldesigner:alias>
</annotation>
</speciesReference>
</listOfProducts>
<kineticLaw>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<times/>
<ci>a1</ci>
<ci>C</ci>
<ci>Y</ci>
</apply>
</math>
<listOfParameters>
<parameter id="a1" value="0.5"/>
</listOfParameters>
</kineticLaw>
</reaction>
<reaction id="Reaction7" name="Reaction7" reversible="false">
<annotation>
<celldesigner:name>Reaction7</celldesigner:name>
<celldesigner:reactionType>STATE_TRANSITION</celldesigner:reactionType>
<celldesigner:baseReactants>Z</celldesigner:baseReactants>
<celldesigner:baseProducts>C</celldesigner:baseProducts>
<celldesigner:listOfProductLinks>
<celldesigner:productLink alias="a4" product="Y" targetLineIndex="-1,1"/>
</celldesigner:listOfProductLinks>
<celldesigner:offset x="17.0" y="0.0"/>
<celldesigner:editPoints>0.3333333333333333,-1.1102230246251565E-16 0.6666666666666665,-1.1102230246251565E-16</celldesigner:editPoints>
</annotation>
<listOfReactants>
<speciesReference species="Z">
<annotation>
<celldesigner:alias>a5</celldesigner:alias>
</annotation>
</speciesReference>
</listOfReactants>
<listOfProducts>
<speciesReference species="C">
<annotation>
<celldesigner:alias>a1</celldesigner:alias>
</annotation>
</speciesReference>
<speciesReference species="Y">
<annotation>
<celldesigner:alias>a4</celldesigner:alias>
</annotation>
</speciesReference>
</listOfProducts>
<kineticLaw>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<times/>
<ci>a2</ci>
<ci>Z</ci>
</apply>
</math>
<listOfParameters>
<parameter id="a2" value="0.5"/>
</listOfParameters>
</kineticLaw>
</reaction>
<reaction id="Reaction8" name="Reaction8" reversible="false">
<annotation>
<celldesigner:name>Reaction8</celldesigner:name>
<celldesigner:reactionType>STATE_TRANSITION</celldesigner:reactionType>
<celldesigner:baseReactants>Z</celldesigner:baseReactants>
<celldesigner:baseProducts>Y</celldesigner:baseProducts>
<celldesigner:offset x="-3.0" y="-2.0"/>
<celldesigner:editPoints>0.33333333333333337,0.0 0.6666666666666669,0.0</celldesigner:editPoints>
</annotation>
<listOfReactants>
<speciesReference species="Z">
<annotation>
<celldesigner:alias>a5</celldesigner:alias>
</annotation>
</speciesReference>
</listOfReactants>
<listOfProducts>
<speciesReference species="Y">
<annotation>
<celldesigner:alias>a4</celldesigner:alias>
</annotation>
</speciesReference>
</listOfProducts>
<kineticLaw>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<times/>
<ci>Z</ci>
<ci>alpha</ci>
</apply>
</math>
<listOfParameters>
<parameter id="alpha" value="0.1"/>
</listOfParameters>
</kineticLaw>
</reaction>
<reaction id="Reaction9" name="Reaction9" reversible="false">
<annotation>
<celldesigner:name>Reaction9</celldesigner:name>
<celldesigner:reactionType>STATE_TRANSITION</celldesigner:reactionType>
<celldesigner:baseReactants>Z</celldesigner:baseReactants>
<celldesigner:baseProducts>C</celldesigner:baseProducts>
<celldesigner:offset x="-15.0" y="3.0"/>
<celldesigner:editPoints>0.3333333333333333,-1.1102230246251565E-16 0.6666666666666665,-1.1102230246251565E-16</celldesigner:editPoints>
</annotation>
<listOfReactants>
<speciesReference species="Z">
<annotation>
<celldesigner:alias>a5</celldesigner:alias>
</annotation>
</speciesReference>
</listOfReactants>
<listOfProducts>
<speciesReference species="C">
<annotation>
<celldesigner:alias>a1</celldesigner:alias>
</annotation>
</speciesReference>
</listOfProducts>
<kineticLaw>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<times/>
<ci>Z</ci>
<ci>alpha</ci>
</apply>
</math>
<listOfParameters>
<parameter id="alpha" value="0.1"/>
</listOfParameters>
</kineticLaw>
</reaction>
<reaction id="Reaction10" name="Reaction10" reversible="false">
<annotation>
<celldesigner:name>Reaction10</celldesigner:name>
<celldesigner:reactionType>STATE_TRANSITION</celldesigner:reactionType>
<celldesigner:baseReactants>EmptySet</celldesigner:baseReactants>
<celldesigner:baseProducts>M</celldesigner:baseProducts>
<celldesigner:editPoints>0.3333333333333336,4.440892098500626E-16 0.666666666666667,4.440892098500626E-16</celldesigner:editPoints>
</annotation>
<listOfReactants>
<speciesReference species="EmptySet">
<annotation>
<celldesigner:alias>a0</celldesigner:alias>
</annotation>
</speciesReference>
</listOfReactants>
<listOfProducts>
<speciesReference species="M">
<annotation>
<celldesigner:alias>a2</celldesigner:alias>
</annotation>
</speciesReference>
</listOfProducts>
<kineticLaw>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<times/>
<apply>
<divide/>
<apply>
<times/>
<apply>
<minus/>
<cn type="integer">1</cn>
<ci>M</ci>
</apply>
<ci>VM1</ci>
<ci>C</ci>
</apply>
<apply>
<minus/>
<apply>
<plus/>
<cn type="integer">1</cn>
<ci>K1</ci>
</apply>
<ci>M</ci>
</apply>
</apply>
<apply>
<plus/>
<ci>Kc</ci>
<ci>C</ci>
</apply>
</apply>
</math>
<listOfParameters>
<parameter id="K1" value="0.0050"/>
<parameter id="Kc" value="0.3"/>
<parameter id="VM1" value="3.0"/>
</listOfParameters>
</kineticLaw>
</reaction>
<reaction id="Reaction11" name="Reaction11" reversible="false">
<annotation>
<celldesigner:name>Reaction11</celldesigner:name>
<celldesigner:reactionType>STATE_TRANSITION</celldesigner:reactionType>
<celldesigner:baseReactants>EmptySet</celldesigner:baseReactants>
<celldesigner:baseProducts>X</celldesigner:baseProducts>
<celldesigner:offset x="3.0" y="-8.0"/>
<celldesigner:editPoints>0.33333333333333215,1.1102230246251565E-16 0.6666666666666661,6.661338147750939E-16</celldesigner:editPoints>
</annotation>
<listOfReactants>
<speciesReference species="EmptySet">
<annotation>
<celldesigner:alias>a0</celldesigner:alias>
</annotation>
</speciesReference>
</listOfReactants>
<listOfProducts>
<speciesReference species="X">
<annotation>
<celldesigner:alias>a3</celldesigner:alias>
</annotation>
</speciesReference>
</listOfProducts>
<kineticLaw>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<divide/>
<apply>
<times/>
<ci>VM3</ci>
<apply>
<minus/>
<cn type="integer">1</cn>
<ci>X</ci>
</apply>
<ci>M</ci>
</apply>
<apply>
<minus/>
<apply>
<plus/>
<cn type="integer">1</cn>
<ci>K3</ci>
</apply>
<ci>X</ci>
</apply>
</apply>
</math>
<listOfParameters>
<parameter id="K3" value="0.0050"/>
<parameter id="VM3" value="1.0"/>
</listOfParameters>
</kineticLaw>
</reaction>
<reaction id="Reaction12" name="Reaction12" reversible="false">
<annotation>
<celldesigner:name>Reaction12</celldesigner:name>
<celldesigner:reactionType>STATE_TRANSITION</celldesigner:reactionType>
<celldesigner:baseReactants>M</celldesigner:baseReactants>
<celldesigner:baseProducts>EmptySet</celldesigner:baseProducts>
<celldesigner:offset x="9.0" y="11.0"/>
<celldesigner:editPoints>0.3333333333333335,0.0 0.6666666666666667,0.0</celldesigner:editPoints>
</annotation>
<listOfReactants>
<speciesReference species="M">
<annotation>
<celldesigner:alias>a2</celldesigner:alias>
</annotation>
</speciesReference>
</listOfReactants>
<listOfProducts>
<speciesReference species="EmptySet">
<annotation>
<celldesigner:alias>a0</celldesigner:alias>
</annotation>
</speciesReference>
</listOfProducts>
<kineticLaw>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<divide/>
<apply>
<times/>
<ci>M</ci>
<ci>V2</ci>
</apply>
<apply>
<plus/>
<ci>K2</ci>
<ci>M</ci>
</apply>
</apply>
</math>
<listOfParameters>
<parameter id="K2" value="0.0050"/>
<parameter id="V2" value="1.5"/>
</listOfParameters>
</kineticLaw>
</reaction>
<reaction id="Reaction13" name="Reaction13" reversible="false">
<annotation>
<celldesigner:name>Reaction13</celldesigner:name>
<celldesigner:reactionType>STATE_TRANSITION</celldesigner:reactionType>
<celldesigner:baseReactants>X</celldesigner:baseReactants>
<celldesigner:baseProducts>EmptySet</celldesigner:baseProducts>
<celldesigner:offset x="16.0" y="12.0"/>
<celldesigner:editPoints>0.3333333333333339,0.0 0.666666666666667,2.220446049250313E-16</celldesigner:editPoints>
</annotation>
<listOfReactants>
<speciesReference species="X">
<annotation>
<celldesigner:alias>a3</celldesigner:alias>
</annotation>
</speciesReference>
</listOfReactants>
<listOfProducts>
<speciesReference species="EmptySet">
<annotation>
<celldesigner:alias>a0</celldesigner:alias>
</annotation>
</speciesReference>
</listOfProducts>
<kineticLaw>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<divide/>
<apply>
<times/>
<ci>V4</ci>
<ci>X</ci>
</apply>
<apply>
<plus/>
<ci>K4</ci>
<ci>X</ci>
</apply>
</apply>
</math>
<listOfParameters>
<parameter id="K4" value="0.0050"/>
<parameter id="V4" value="0.5"/>
</listOfParameters>
</kineticLaw>
</reaction>
</listOfReactions>
</model>
</sbml>
